* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header {
    border-bottom: 2px solid #a36aa0;
    padding: 20px 0;
  }
  
  .logo {
    color: #a36aa0;
    font-weight: bold;
    font-size: 24px;
  }
  
  .nav {
    float: right;
  }
  
  .nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1 1 500px;
  }
  
  .hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero-description {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .hero-button {
    display: inline-block;
    background-color: #a36aa0;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: bold;
  }
  
  .hero-image {
    flex: 1 1 400px;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .nav {
      float: none;
      margin-top: 10px;
      text-align: center;
    }
  
    .nav a {
      display: inline-block;
      margin: 10px;
    }
  
    .hero-content {
      flex-direction: column;
    }
  
    .hero-title {
      font-size: 28px;
    }
  }
  
  .about {
    padding: 60px 0;
  }
  
  .about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 500px;
  }
  
  .about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .about-image {
    flex: 1 1 300px;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 4px;
  }
  
  .about-values {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .value {
    flex: 1 1 300px;
  }
  
  .value h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .team {
    padding: 60px 0;
  }
  
  .team h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .team-members {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .member {
    flex: 1 1 300px;
  }
  
  .member img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  
  .member h3 {
    font-size: 18px;
    font-weight: bold;
  }
  
  .member .role {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .about-content,
    .about-values,
    .team-members {
      flex-direction: column;
    }
  
    .about-text h2,
    .team h2 {
      font-size: 24px;
    }
  }
  
  .faq {
    background-color: #f8f8f8;
    padding: 60px 0;
  }
  
  .faq h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .faq-item {
    background-color: #a36aa0;
    color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 4px;
  }
  
  .faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .faq-item p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .faq h2 {
      font-size: 24px;
    }
  
    .faq-item {
      padding: 20px;
    }
  
    .faq-item h3 {
      font-size: 16px;
    }
  
    .faq-item p {
      font-size: 15px;
    }
  }
  
  .webinaires {
    padding: 60px 0;
  }
  
  .webinaires h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .webinaire {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .webinaire img {
    max-width: 300px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  .webinaire-content {
    flex: 1 1 400px;
  }
  
  .webinaire-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .webinaire-content .date {
    font-weight: bold;
    margin-bottom: 10px;
    color: #555;
  }
  
  .contact {
    background-color: #1e0f2b;
    color: white;
    padding: 60px 0;
  }
  
  .contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-image img {
    max-width: 100%;
    border-radius: 4px;
  }
  
  .contact-form {
    flex: 1 1 400px;
  }
  
  .contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    background-color: #2d1e3f;
    color: white;
    font-size: 16px;
    border-radius: 2px;
  }
  
  .contact-form form button {
    background-color: #a36aa0;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
  }
  
  .footer {
    background-color: white;
    border-top: 2px solid #a36aa0;
    padding: 20px 0;
    font-size: 14px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .footer-links a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
  }
  
  .footer-icons a img {
    width: 20px;
    margin-left: 15px;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .webinaire {
      flex-direction: column;
    }
  
    .contact-wrapper {
      flex-direction: column;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-links a,
    .footer-icons a {
      margin: 5px;
    }
  }
  
  .thank-you {
    text-align: center;
    padding: 100px 20px;
  }
  
  .thank-you h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .thank-you .subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .thank-you .description {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
  }
  
  .btn-return {
    background-color: #a03694;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    display: inline-block;
  }
  
  /* Адаптив */
  @media (max-width: 600px) {
    .thank-you h1 {
      font-size: 24px;
    }
  
    .thank-you .subtitle,
    .thank-you .description {
      font-size: 15px;
    }
  }
  
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 2px solid #a36aa0;
    padding: 30px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
  }
  
  .cookie-banner h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .cookie-banner p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    background-color: #a03694;
    color: white;
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  
  .cookie-btn:hover {
    background-color: #871f7a;
  }
  
  /* Адаптив */
  @media (max-width: 600px) {
    .cookie-buttons {
      flex-direction: column;
      gap: 10px;
    }
  }
  