 
    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    body {
      background: #f9f9f9;
      color: #222;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding-top: 80px;
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      z-index: 999;
      
       box-sizing: border-box;
  width: 100vw;
     
    }
    .logo {
      font-weight: 800;
      font-size: 1.8rem;
      color: #f4b41a;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      gap: 10px;
      user-select: none;
    }
    
    
    
    nav {
      display: flex;
      gap: 25px;
      align-items: center;
    }
    nav a, .dropbtn {
      color: #f4b41a;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;
      user-select: none;
      cursor: pointer;
      position: relative;
      padding: 6px 10px;
      border-radius: 8px;
    }
    nav a:hover, .dropbtn:hover {
      color: #fff;
      text-shadow: 2px 2px 5px #f4b41a;
      background: rgba(244, 180, 26, 0.15);
    }
    .burger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      width: 32px;
      height: 24px;
      justify-content: center;
      user-select: none;
      z-index: 1100;
    }
     .burger span {
      background: #f4b41a;
      height: 4px;
      border-radius: 3px;
      transition: all 0.4s ease;
    }
    .burger span:nth-child(1) {
      width: 100%;
    }
    .burger span:nth-child(2) {
      width: 70%;
    }
    .burger span:nth-child(3) {
      width: 40%;
    }
    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
      width: 100%;
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
      width: 100%;
    }
    /* Dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background: #2a5298;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
      min-width: 220px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      user-select: none;
    }
    .dropdown-content a {
      padding: 10px 20px;
      color: #f4b41a;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border-radius: 6px;
    }
    .dropdown-content a:hover {
      background: #1e3c72;
      color: #fff;
    }
    /* Show dropdown on hover (desktop) */
    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    /* Mobile styles */
    @media (max-width: 768px) {
   nav {
  flex-direction: column;
  position: fixed;
  top: 80px;
  right: 0;
  background: #2c5364;
  padding: 15px 25px; /* збільшені горизонтальні відступи */
  border-radius: 15px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  z-index: 1000;
  display: none;
  user-select: none;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scroll-behavior: smooth;
}
      nav.active {
        display: flex;
      }
      .burger {
        display: flex;
      }
      /* Mobile dropdown content */
      .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height 0.35s ease, opacity 0.35s ease, visibility 0.35s ease, padding 0.35s ease;
        width: 100%;
      }
      .dropdown-content a {
        padding-left: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
        background: rgba(244, 180, 26, 0.1);
        margin: 3px 0;
        border-radius: 8px;
      }
      .dropdown-content a:hover {
        background: rgba(244, 180, 26, 0.3);
      }
      .dropdown.active .dropdown-content {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        padding-top: 8px;
        padding-bottom: 8px;
      }
      /* Caret arrow */
      .dropbtn::after {
        
        font-size: 0.8rem;
        margin-left: 6px;
      }
    }
   main {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 10px;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
}



@media (max-width: 1024px) {
  main {
    max-width: 90vw; /* або 100%, щоб не виходило за межі */
  }
}

@media (max-width: 480px) {
  main {
    padding: 0 10px; /* зменшити падінг */
  }
}


 .modern-info-block {
  margin: 50px auto;
  padding: 35px 45px;
  background: #f4b41a;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(244, 180, 26, 0.5);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #203a43;
  user-select: none;
}

.modern-info-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap; /* Забороняємо перенос */
}

.modern-info-icon {
  font-size: 4rem;
  color: #203a43;
  flex-shrink: 0;
}

.modern-info-text {
  flex: 1 1 auto;
  max-width: 700px;
  white-space: nowrap; /* Забороняємо перенос тексту */
  overflow: hidden;
  text-overflow: ellipsis;
}

.modern-info-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 3px solid #203a43;
  padding-bottom: 6px;
  color: #203a43;
  user-select: text;
  white-space: normal; /* Дозволити перенос */
  line-height: 1.2;
  word-break: break-word; /* Переносити слова, якщо треба */
  max-width: 100%;
}

.modern-info-description {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #203a43;
  margin-bottom: 18px;
  user-select: text;
  white-space: normal; /* Дозволяємо переноси в описі */
}

.modern-info-link {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #203a43;
  text-decoration: underline;
  transition: color 0.3s ease;
  user-select: text;
}

.modern-info-link:hover,
.modern-info-link:focus {
  color: #000;
}

@media (max-width: 720px) {
  .modern-info-block {
    padding: 25px 20px;
  }
  .modern-info-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .modern-info-icon {
    font-size: 3.5rem;
  }
  .modern-info-title {
    font-size: 1.6rem;
    white-space: normal; /* на мобі дозволяємо перенос */
  }
  .modern-info-description {
    font-size: 1.1rem;
  }
  .modern-info-link {
    font-size: 1rem;
  }
}

    
.hero {
  position: relative;
 
  margin: 0 auto 50px;
  border: 2px solid #f4b41a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(244, 180, 26, 0.4);
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent 30%, transparent 70%, rgba(0,0,0,0.1));
}

.hero img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 45vh;
  filter: contrast(1.1) brightness(1.05);
  /* без hover трансформацій */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  user-select: none;
  width: 90%;
  max-width: 600px;
}

.text-item {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.text-item.active {
  display: block;
  opacity: 1;
}

.text-item h2 {
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 6px;
  /* прибираємо text-shadow */
  color: #f4b41a; /* яскравий жовтий, чіткий */
}

.text-item p {
  font-weight: 500;
  font-size: 1.1rem;
  /* прибираємо text-shadow */
  color: #fff; /* білий, без розмиття */
}

@media (max-width: 768px) {
  .hero img {
    height: 35vh;
  }
  .text-item h2 {
    font-size: 2rem;
  }
  .text-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero img {
    height: 30vh;
  }
  .text-item h2 {
    font-size: 1.6rem;
  }
  .text-item p {
    font-size: 0.8rem;
  }
}

.intro-block-alt {
  
  margin: 20px auto 20px;
  padding: 15px 25px;
  border-left: 5px solid #f4b41a;
  background: #FFF;
  color:linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  user-select: none;
  box-shadow: 0 4px 14px rgba(244, 180, 26, 0.5);
  text-align: center;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 768px) {
  .intro-block-alt {
    
    font-size: 1.6rem;
    padding: 12px 18px;
    margin: 20px 1px 20px;
  }
}




    section {
      margin-bottom: 50px;
    }
    h2 {
      margin-bottom: 20px;
      border-bottom: 3px solid #f4b41a;
      padding-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.6rem;
      user-select: none;
    }
    .features {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .feature {
      background: #fff;
      padding: 25px 20px;
      border-radius: 15px;
      flex: 1 1 260px;
      box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
      text-align: center;
      transition: transform 0.3s ease;
      user-select: none;
    }
    .feature:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgb(0 0 0 / 0.25);
    }
    .feature i {
      font-size: 3.4rem;
      color: #f4b41a;
      margin-bottom: 18px;
    }
    .reviews {
      background: #fff;
      border-radius: 15px;
      padding: 25px 30px;
      box-shadow: 0 3px 20px rgb(0 0 0 / 0.15);
      user-select: none;
    }
    .review {
      border-bottom: 1px solid #ddd;
      padding: 18px 0;
    }
    .review:last-child {
      border: none;
    }
    .review p {
      font-style: italic;
      margin-bottom: 10px;
      font-size: 1.1rem;
      line-height: 1.4;
      color: #444;
    }
    .review .author {
      font-weight: 700;
      color: #222;
      font-size: 1rem;
    }
    footer {
      background: #0f2027;
      color: #aaa;
      text-align: center;
      padding: 22px 0;
      font-size: 0.9rem;
      margin-top: auto;
      border-radius: 20px 20px 0 0;
      user-select: none;
    }
    a {
      color: #f4b41a;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    a:hover {
      color: #fff;
    }
    
 .why-us {
  background: #203a43;
  color: #f4b41a;
 
  
  padding: 40px 20px;
  border-radius: 0; /* без округлень щоб на всю ширину було */
  box-sizing: border-box;
  box-shadow: none;
  user-select: none;
  text-align: center;
}

.why-us h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #d4b33a; /* трохи темніший жовтий, без світінь */
  text-shadow: none;
}

.why-us ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.why-us ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.why-us ul li::before {
  content: "\f00c"; /* fontawesome check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f4b41a;
  font-size: 1.2rem;
}

/* Адаптивність */
@media (max-width: 768px) {
  .why-us {
    padding: 30px 15px;
  }
  .why-us h2 {
    font-size: 1.8rem;
  }
  .why-us ul li {
    font-size: 1rem;
  }
}
   
   
  #brands {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  .brand-item {
    background: #f4b41a;
    color: #203a43;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 3px 8px rgb(244 180 26 / 0.5);
    user-select: none;
    cursor: default;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .brand-item:hover {
    background: #203a43;
    color: #f4b41a;
  }
  @media (max-width: 480px) {
    .brand-item {
      font-size: 1rem;
      padding: 10px 20px;
      border-radius: 20px;
    }
  #brands h2 {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    margin-bottom: 15px;
     }   
   
    
 