/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Open Sans", sans-serif;
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
  }
  
  /* Header styles */
  .header {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    background-color: #fff;
  }

  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo {
    color: #2e00d7;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }
  
  .nav-link {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }
  
  /* Hero section */
  .hero {
    display: flex;
    width: 100%;
    padding: 60px 80px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: url('../img/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
  }
  
  .hero-title {
    color: #fff;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
  }
  
  .hero-description {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
  }
  
  .cta-button {
    padding: 18px 40px;
    border: none;
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #2e00d7;
    cursor: pointer;
    text-align: center;
  }
  
  /* Why choose section */
  .why-choose {
    display: flex;
    width: 100%;
    padding: 60px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    background-color: #2e00d7;
  }
  
  .section-title {
    align-self: stretch;
    color: #fff;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
  }
  
  .features-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }
  
  .feature-card {
    display: flex;
    width: 333px;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    background-color: #fff;
  }
  
  .feature-title {
    align-self: stretch;
    color: #000;
    font-size: 18px;
    font-weight: 700;
  }
  
  .feature-description {
    width: 300px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
  }
  
  /* About section */
  .about-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 60px 80px;
    flex-direction: row;
    align-items: flex-start;
    gap: 47px;
    background-color: #fff;
  }
  
  .consulting-image {
    width: 466px;
    border-radius: 20px;
  }
  
  .about-content {
    display: flex;
    width: 527px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .about-title {
    align-self: stretch;
    color: #000;
    font-size: 34px;
    font-weight: 700;
  }
  
  .about-description {
    width: 534px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
  }
  
  /* Services section */
  .services-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 60px 79px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    background-color: #2e00d7;
  }

  .services-text {
        font-weight: 600;
        font-style: italic;
        font-size: 24px;
        line-height: 100%;
        text-transform: uppercase;
        color: #fff;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
  
  .service-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .service-icon {
    width: 33px;
    height: 33px;
  }

  .contact-section .section-title {
    color: #000;
  }

  html {
    scroll-behavior: smooth;
  }
  
  .service-divider {
    width: 100%;
    height: 1px;
    background-color: #fbfbfb;
  }
  
  /* Strategy section */
  .strategy-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 60px 80px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #fff;
  }
  
  .strategy-title {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
  }
  
  .strategy-description {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
  }
  
  /* Events section */
  .events-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 80px 60px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: #fff;
  }
  
  .events-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .events-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .event-image {
    width: 346px;
    height: 278px;
    border-radius: 20px;
    object-fit: cover;
  }
  
  .event-card {
    display: flex;
    width: 347px;
    height: 278px;
    padding: 22px 27px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    background-color: #2e00d7;
  }
  
  .event-title {
    align-self: stretch;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
  }
  
  .event-description {
    align-self: stretch;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
  }
  
  /* Reviews section */
  .reviews-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 60px 80px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: #fff;
  }
  
  .reviews-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  
  .review-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: -27px;
    flex: 1 0 0;
  }
  
  .avatar-container {
    display: flex;
    width: 80px;
    height: 80px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    background-color: #2e00d7;
    z-index: 1;
  }
  
  .review-content {
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    background-color: #f1f1f1;
    margin-top: -40px;
    padding-top: 60px;
  }
  
  .review-text {
    align-self: stretch;
    color: #000;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
  }
  
  .reviewer-name {
    align-self: stretch;
    color: #000;
    font-size: 18px;
    font-weight: 700;
  }
  
  /* Contact section */
  .contact-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 40px 60px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: #fff;
  }
  
  .contact-form {
    display: flex;
    width: 500px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  
  .form-label {
    align-self: stretch;
    color: #000;
    font-size: 16px;
    font-weight: 400;
  }
  
  .form-input {
    height: 60px;
    padding: 11px 14px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #000;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
  }
  
  .form-input::placeholder {
    color: #c9c9c9;
  }
  
  .form-textarea {
    height: 100px;
    padding: 21px 14px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #000;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    resize: none;
    font-family: "Open Sans", sans-serif;
  }
  
  .form-textarea::placeholder {
    color: #c9c9c9;
  }
  
  .submit-button {
    width: 100%;
    height: 60px;
    padding: 18px 40px;
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #2e00d7;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background-color: #fff;
  }
  
  .footer-logo {
    color: #2e00d7;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .footer-content {
    display: flex;
    height: 60px;
    padding-top: 24px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid #000;
  }
  
  .copyright {
    color: #000;
    font-size: 12px;
    font-weight: 400;
  }
  
  .footer-links {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .footer-link {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
  }
  
  .social-links {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .social-link {
    display: flex;
    padding: 9px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 21px;
    background-color: #2e00d7;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }

  .main-section {
    max-width: 1200px;
    width: 100%;
    padding: 60px 80px;

  }

  .main-section .section-title {
    color: #000;
    text-align: left;
    margin-bottom: 40px;
  }

  .thx-section,
  .thx-section .section-title {
    text-align: center;
  }

  .popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 50px 60px;
    background: #fff;
  }
  
  .popup-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
  }

  .popup-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  /* Media queries */
  @media (max-width: 991px) {
    .header,
    .hero,
    .why-choose,
    .about-section,
    .services-section,
    .strategy-section,
    .reviews-section {
      padding: 60px 40px;
    }

    .main-section {
      padding: 20px 40px;
    }

    .header .container {
        justify-content: center;
    }
  
    .events-section,
    .contact-section {
      padding: 80px 40px;
    }
  
    .footer {
      padding: 40px;
    }
  }
  
  @media (max-width: 640px) {
    .header,
    .hero,
    .why-choose,
    .about-section,
    .services-section,
    .strategy-section,
    .reviews-section {
      padding: 60px 20px;
    }
  
    .events-section,
    .contact-section {
      padding: 80px 20px;
    }
  
    .footer {
      padding: 40px 20px;
    }
  
    .main-nav {
      display: none;
    }
  
    .about-section {
      flex-direction: column;
      align-items: center;
    }
  
    .consulting-image {
      width: 100%;
    }
  
    .about-content {
      width: 100%;
    }
  
    .about-description {
      width: 100%;
    }
  
    .features-container,
    .reviews-container {
      flex-direction: column;
    }
  
    .feature-card {
      width: 100%;
    }
  
    .feature-description {
      width: 100%;
    }
  
    .events-row {
      flex-direction: column;
    }
  
    .event-image,
    .event-card {
      width: 100%;
    }
  
    .contact-form {
      width: 100%;
    }
  
    .submit-button {
      width: 100%;
    }
  
    .footer-content {
      flex-direction: column;
      height: auto;
      gap: 20px;
      padding: 20px 0;
    }
  }
  