    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Хедер */
    header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #e63946;
    }

    .logo span {
      color: #1d3557;
    }

    .menu {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    .menu a {
      text-decoration: none;
      color: #1d3557;
      font-weight: 500;
      transition: color 0.3s;
    }

    .menu a:hover {
      color: #e63946;
    }

    .menu li {
      display: flex;
      align-items: center;
    }

    .menu .btn {
      color: #fff;
    }

    .burger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: #1d3557;
    }

    /* Главный экран */
    .hero {
      /* background: linear-gradient(135deg, #f1faee 0%, #a8dadc 100%); */
      background: url("../images/main_bg.webp") no-repeat center center;
      background-size: cover;
      /* padding: 100px 0; */
      text-align: center;
      position: relative;
      overflow: hidden;
      height: 100vh;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 0;
    }

    .hero h1 {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
      text-shadow: 1px 1px 1px rgba(69,  123,  157, 0.5);
    }

    .hero p {
      font-size: 1.2rem;
      color: #fff;
      max-width: 800px;
      margin: 0 auto 30px;
      position: relative;
      z-index: 1;
      text-shadow: 1px 1px 1px rgba(69,  123,  157, 0.5);
    }

    .btn {
      display: inline-block;
      background: #e63946;
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
      position: relative;
      z-index: 1;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    }

    /* Как мы это делаем */
    .process {
      padding: 80px 0;
      background-color: #fff;
    }

    .process h2 {
      text-align: center;
      font-size: 2rem;
      color: #1d3557;
      margin-bottom: 50px;
    }

    .steps {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .step {
      text-align: center;
      max-width: 280px;
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: #e63946;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: bold;
      margin: 0 auto 20px;
    }

    .step h3 {
      font-size: 1.3rem;
      color: #1d3557;
      margin-bottom: 15px;
    }

    .step p {
      color: #457b9d;
      font-size: 1rem;
    }

    /* Преимущества */
    .features {
      padding: 80px 0;
      background-color: #f8f9fa;
    }

    .features h2 {
      text-align: center;
      font-size: 2rem;
      color: #1d3557;
      margin-bottom: 40px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: #e63946;
      margin-bottom: 15px;
    }

    .feature-card h3 {
      font-size: 1.3rem;
      color: #1d3557;
      margin-bottom: 10px;
    }

    /* Доставка */
    .delivery {
      padding: 80px 0;
      background-color: #fff;
    }

    .delivery h2 {
      text-align: center;
      font-size: 2rem;
      color: #1d3557;
      margin-bottom: 40px;
    }

    .delivery-info {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: #457b9d;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .couriers {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .courier-logo {
      background: #1d3557;
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* Отзывы */
    .reviews {
      padding: 80px 0;
      background-color: #f8f9fa;
    }

    .reviews h2 {
      text-align: center;
      font-size: 2rem;
      color: #1d3557;
      margin-bottom: 40px;
    }

    .reviews-slider {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 10px;
      scrollbar-width: none;
    }

    .reviews-slider::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      min-width: 300px;
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      flex: 0 0 auto;
    }

    .review-rating {
      color: #e63946;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .review-text {
      font-style: italic;
      color: #457b9d;
      margin-bottom: 15px;
    }

    .review-author {
      font-weight: 600;
      color: #1d3557;
    }

    .review-source {
      font-size: 0.9rem;
      color: #6c757d;
    }

    /* FAQ */
    .faq {
      padding: 80px 0;
      background-color: #fff;
    }

    .faq h2 {
      text-align: center;
      font-size: 2rem;
      color: #1d3557;
      margin-bottom: 40px;
    }

    .faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
    }

    .faq-question {
      padding: 18px 20px;
      background: #f8f9fa;
      font-weight: 600;
      color: #1d3557;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1rem;
    }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: #457b9d;
    }

    .faq-answer.show {
      padding: 20px;
      max-height: 300px;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      color: #e63946;
    }

    .faq-question.active::after {
      content: '−';
    }

    /* Оформить заявку */
    .cta {
      padding: 100px 0;
      background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
      color: white;
      text-align: center;
    }

    .cta h2 {
      font-size: 2.3rem;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }

    .btn-light {
      background: white;
      color: #1d3557;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-light:hover {
      background: #f8f9fa;
      transform: translateY(-3px);
    }

    /* Футер */
    footer {
      background-color: #1d3557;
      color: #a8dadc;
      padding: 40px 0;
      text-align: center;
    }

    .footer-contact {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    .footer-contact a {
      color: #a8dadc;
      text-decoration: none;
    }

    .social a {
      color: #fff;
      font-size: 1.3rem;
      margin: 0 10px;
      transition: color 0.3s;
    }

    .social a:hover {
      color: #e63946;
    }

    .copyright {
      font-size: 0.9rem;
      color: #a8dadc;
      margin-top: 20px;
    }

    /* Мобильная адаптация */
    @media (max-width: 768px) {
      .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
      }

      .menu.active {
        right: 0;
      }

      .burger {
        display: block;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .steps {
        flex-direction: column;
        align-items: center;
      }

      .step {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .hero p, .delivery-info {
        font-size: 1rem;
      }

      .review-card {
        min-width: 280px;
      }
    }