* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    font-size: 14px;
}

.header-left {
    font-weight: bold;
    color: #6a00ff;
}

.header-right a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 40px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    color: #6a00ff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-content button {
    padding: 15px 30px;
    background: linear-gradient(90deg, #6a00ff, #8a00ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-right {
        margin-top: 10px;
    }
}

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 80px 50px;
    gap: 50px;
}

.about-text {
    flex: 1 1 500px;
    max-width: 600px;
}

.about-text h2 {
    color: #6a00ff;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text h3 {
    color: #6a00ff;
    font-size: 24px;
    margin-top: 30px;
}

.about-text p,
.about-text ul {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-text ul {
    padding-left: 20px;
}

.about-images {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-images img {
    width: 150px;
}

.reasons {
    background: linear-gradient(90deg, #6a00ff, #8a00ff);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.reasons h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.reasons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.reason-item {
    width: 200px;
}

.reason-item img {
    width: 40px;
    margin-bottom: 15px;
}

.reason-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.reason-item p {
    font-size: 14px;
}

.reasons-button {
    margin-top: 40px;
}

.reasons-button button {
    padding: 15px 30px;
    background: white;
    color: #6a00ff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

/* Адаптив */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .reasons-list {
        flex-direction: column;
        align-items: center;
    }
}

.testimonials {
    padding: 80px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 36px;
    color: #6a00ff;
    margin-bottom: 40px;
  }
  
  .testimonials-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .testimonial-image img {
    width: 300px;
    border-radius: 20px;
  }
  
  .testimonial-texts {
    max-width: 500px;
    text-align: left;
  }
  
  .testimonial {
    margin-bottom: 30px;
  }
  
  .stars {
    color: gold;
    margin-bottom: 5px;
  }
  
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-item h3 {
    font-size: 32px;
    color: #6a00ff;
    margin-bottom: 10px;
  }
  
  .stat-item p {
    font-size: 14px;
  }
  
  /* Контактна секція */
  .contact {
    background: linear-gradient(90deg, #6a00ff, #8a00ff);
    color: white;
    padding: 80px 20px 0 20px;
  }
  
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  
  .contact-text {
    flex: 1 1 500px;
    max-width: 500px;
  }
  
  .contact-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .contact-text p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    border: none;
  }
  
  .contact-form button {
    padding: 15px 30px;
    background: white;
    color: #6a00ff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .contact-image img {
    width: 300px;
    border-radius: 20px;
  }
  
  /* Footer */
  .footer {
    margin-top: 50px;
    padding: 30px 20px;
    background: #fff;
    color: #6a00ff;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-left {
    font-weight: bold;
  }
  
  .footer-right a {
    margin-left: 20px;
    text-decoration: none;
    color: #6a00ff;
  }
  
  .copyright {
    text-align: center;
    color: #999;
    margin-top: 20px;
    font-size: 12px;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .testimonials-content,
    .stats,
    .contact-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  .thank-you {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .thank-you h1 {
    font-size: 40px;
    color: #6a00ff;
    margin-bottom: 30px;
  }
  
  .thank-you p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
  }
  
  .thank-you-button {
    margin-top: 40px;
  }
  
  .thank-you-button a {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #6a00ff, #8a00ff);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
  }
  
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #6a00ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  
  .cookie-content img {
    width: 60px;
    height: 60px;
  }
  
  .cookie-text {
    flex: 1;
  }
  
  .cookie-text h2 {
    color: #6a00ff;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .cookie-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .cookie-buttons button {
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .accept-btn {
    background: linear-gradient(90deg, #6a00ff, #8a00ff);
    color: white;
    border: none;
  }
  
  .reject-btn {
    background: transparent;
    color: #6a00ff;
    border: 2px solid #6a00ff;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }
  }
  