* {
      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;
      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 {
      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;
    }
    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    @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; }
      .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;
      }
    }
    main {
      max-width: 1000px;
      margin: 0 auto 60px;
      padding: 0 10px;
      flex-grow: 1;
      width: 100%;
      box-sizing: border-box;
    }

    /* Новий стиль для сторінки Про нас */
    .about-block {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
      display: flex;
      gap: 30px;
      align-items: center;
      margin-top: 50px;
      user-select: none;
    }
    .about-block img {
      width: 350px;
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      object-fit: cover;
      flex-shrink: 0;
    }
    .about-text {
      flex: 1;
      color: #203a43;
    }
    .about-text h1 {
      color: #f4b41a;
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .about-text p {
      font-size: 1.15rem;
      line-height: 1.6;
      color: #444;
      margin-bottom: 15px;
    }

    @media (max-width: 768px) {
      .about-block {
        flex-direction: column;
        padding: 20px;
      }
      .about-block img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
      }
      .about-text h1 {
        font-size: 2rem;
        text-align: center;
      }
      .about-text p {
        font-size: 1rem;
        text-align: center;
      }
    }
    
.stock-section {
  background: #fff;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
  color: #203a43;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

.stock-section h2 {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #f4b41a;
}

.stock-section h2 i {
  font-size: 2.8rem;
  /* filter: drop-shadow(0 0 3px #f4b41a); */ /* видалено */
}

.stock-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
  color: #444;
}

.stock-items {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 700px;
}

.stock-item {
  flex: 1 1 160px;
  background: linear-gradient(135deg, #f4b41a, #e3b10a);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 15px rgba(244, 180, 26, 0.7);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #203a43;
  font-weight: 700;
  font-size: 1.15rem;
  user-select: none;
}

.stock-item i {
  font-size: 1.8rem;
  /* filter: drop-shadow(0 0 2px #203a43); */ /* видалено */
}

.stock-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 180, 26, 0.9);
}

@media (max-width: 768px) {
  .stock-section {
    padding: 30px 20px;
  }
  .stock-section h2 {
    font-size: 1.7rem;
  }
  .stock-section p {
    font-size: 1rem;
  }
  .stock-items {
    max-width: 100%;
  }
  .stock-item {
    flex: 1 1 45%;
    font-size: 1rem;
    padding: 15px 18px;
  }
  .stock-item i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stock-item {
    flex: 1 1 100%;
  }
}  

.about-service-stylish {
  
  margin: 40px auto;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #1f2a44, #28354a);
  border-radius: 4px;
  box-shadow:
    0 8px 20px rgba(15, 32, 39, 0.4),
    inset 0 0 10px rgba(244, 180, 26, 0.15);
  color: #f4b41a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  transition: box-shadow 0.4s ease;
}

.about-service-stylish:hover {
  box-shadow:
    0 12px 30px rgba(244, 180, 26, 0.7),
    inset 0 0 20px rgba(244, 180, 26, 0.3);
}

.about-service-stylish .icon-wrapper {
  flex-shrink: 0;
  background: #203a43;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #f4b41a;
  transition: box-shadow 0.4s ease;
}

.about-service-stylish .icon-wrapper i {
  font-size: 4.5rem;
  color: #f4b41a;
}

.about-service-stylish .content {
  flex: 1;
}

.about-service-stylish h2 {
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #f4b41a;
  /* Без текстового світіння */
  text-shadow: none;
}

.about-service-stylish p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ddd;
  /* Без текстового світіння */
  text-shadow: none;
}

@media (max-width: 768px) {
  .about-service-stylish {
    flex-direction: column;
    padding: 40px 25px;
    gap: 30px;
  }
  .about-service-stylish .icon-wrapper {
    width: 80px;
    height: 80px;
    box-shadow: 0 0 10px #f4b41a;
  }
  .about-service-stylish .icon-wrapper i {
    font-size: 3.5rem;
  }
  .about-service-stylish h2 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: 1.5px;
  }
  .about-service-stylish p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
  }
}







.ukrblock {
  max-width: 1000px;
  margin: 40px auto 40px auto; /* зверху/знизу, по боках автомат */
  padding: 30px 20px;          /* вертикальні 30px, горизонтальні 20px */
  background-color: #203a43;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: #f4b41a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  text-align: center;
  width: 100%;                 /* заповнює всю ширину батька */
  box-sizing: border-box;      /* падінги не додають ширини */
}

.ukrblock h2 {
  font-weight: 900;
  font-size: 2.4rem;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.ukrblock h2 i {
  font-size: 2.8rem;
  color: #f4b41a;
}

.ukrblock-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  color: #203a43;
  box-shadow: 0 6px 20px rgba(244, 180, 26, 0.3);
  max-width: 960px;            /* більший за макс ширину батька */
  margin: 0 auto;
  box-sizing: border-box;
}

.ukrblock-content .highlight {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ukrblock-content .subtext {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: #555;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
  .ukrblock {
    padding: 25px 15px;
    margin: 30px auto;
  }
  .ukrblock h2 {
    font-size: 1.8rem;
    gap: 10px;
  }
  .ukrblock h2 i {
    font-size: 2.2rem;
  }
  .ukrblock-content {
    padding: 20px 15px;
    max-width: 100%;
  }
  .ukrblock-content .highlight {
    font-size: 1rem;
  }
  .ukrblock-content .subtext {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .ukrblock {
    padding: 20px 10px;
    margin: 25px auto;
  }
  .ukrblock h2 {
    font-size: 1.4rem;
    gap: 8px;
    flex-wrap: wrap;
  }
  .ukrblock h2 i {
    font-size: 1.8rem;
  }
  .ukrblock-content {
    padding: 15px 10px;
  }
  .ukrblock-content .highlight,
  .ukrblock-content .subtext {
    font-size: 0.9rem;
  }
}
