* {
    box-sizing: border-box;
}

.main-page {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    margin-bottom: -5px;
  }

  .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  
  .header {
    border-radius: 50px;
    background-color: rgba(21, 21, 21, 1);
    align-self: center;
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 20px 30px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    color: rgba(255, 255, 255, 1);
    justify-content: center;
  }
  
  @media (max-width: 991px) {
    .header {
      max-width: 95%;
      padding: 20px;
      border-radius: 26px;
    }
  }
  
  .header-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .header-content {
      max-width: 100%;
    }
  }
  
  .logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    align-self: stretch;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    margin: auto 0;
  }
  
  .header-nav {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 400;
    justify-content: start;
  }

  .main-section {
    margin: 80px 0px;
  }

  .main-text {
    font-size: 14px;
    line-height: 120%;
  }

  .main-content {
    max-width: 1100px;
  }

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

  .thx-section .main-content {
    max-width: 996px;
    margin: 0 auto;
  }

  .popup {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    border: 3px solid #A000DA;
    border-radius: 30px;
    text-align: center;
    padding: 30px;
    max-width: 680px;
    font-family: 'Montserrat', sans-serif;
  }

  .popup-title {
        font-weight: 800;
        font-size: 26px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        margin-top: 20px;
        color: #A000DA;
  }

  .popup button {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0px;
  }

  .popup-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 232px;
    margin-top: 30px;
  }

  .popup .btn-outline {
    background: #fff;
    border: 1px solid #A000DA;
    color: #A000DA;
  }

  @media (max-width: 991px) {
    .main-content {
      padding: 0px 20px;
    }
  }
  
  .nav-link {
    align-self: stretch;
    margin: auto 0;
    color: white;
    text-decoration: none;
  }
  
  .banner-image {
    aspect-ratio: 4.88;
    object-fit: contain;
    object-position: center;
    width: 100%;
    margin-top: 20px;
  }
  
  @media (max-width: 991px) {
    .banner-image {
      max-width: 100%;
    }
  }
  
  .hero-section {
    margin-top: 20px;
    width: 100%;
    padding: 0 80px;
  }
  
  @media (max-width: 991px) {
    .hero-section {
      max-width: 100%;
      padding: 0 20px;
    }
  }
  
  .hero-content {
    width: 100%;
    max-width: 1098px;
  }
  
  @media (max-width: 991px) {
    .hero-content {
      max-width: 100%;
    }
  }
  
  .hero-text {
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .hero-text {
      max-width: 100%;
    }
  }
  
  .hero-title {
    color: rgba(160, 0, 218, 1);
    font-size: 70px;
    font-weight: 700;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .hero-title {
      max-width: 100%;
      font-size: 40px;
    }
  }
  
  .hero-description {
    color: rgba(21, 21, 21, 1);
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .hero-description {
      max-width: 100%;
    }
  }
  
  .cta-button {
    display: inline-block;
    border-radius: 12px;
    margin-top: 30px;
    width: 329px;
    max-width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background-color: rgba(160, 0, 218, 1);
    padding: 25px 33px;
  }
  
  @media (max-width: 991px) {
    .cta-button {
      padding: 25px 20px;
    }
  }
  
  .benefits-section {
    margin-top: 80px;
    min-height: 673px;
    width: 100%;
    padding: 0 80px;
  }
  
  @media (max-width: 991px) {
    .benefits-section {
      max-width: 100%;
      margin-top: 40px;
      padding: 0 20px;
    }
  }
  
  .section-title {
    color: rgba(160, 0, 218, 1);
    font-size: 50px;
    font-weight: 700;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .section-title {
      max-width: 100%;
      font-size: 40px;
    }
  }
  
  .benefits-grid {
    display: flex;
    margin-top: 30px;
    width: 100%;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .benefits-grid {
      max-width: 100%;
    }
  }
  
  .benefit-card {
    border-radius: 24px;
    background-color: rgba(21, 21, 21, 1);
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    padding: 20px;
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    width: 228px;
  }
  
  .benefit-wrapper {
    height: 152px;
  }
  
  .benefit-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 40px;
  }
  
  .benefit-content {
    margin-top: 15px;
  }
  
  .benefit-title {
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 15px 0;
  }
  
  .benefit-description {
    margin: 0;
  }
  
  .benefits-image {
    aspect-ratio: 3.33;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 24px;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .benefits-image {
      max-width: 100%;
    }
  }
  
  .about-section {
    display: flex;
    margin-top: 80px;
    align-items: center;
    gap: 30px;
    justify-content: start;
  }

  html {
    scroll-behavior: smooth;
  }
  
  @media (max-width: 991px) {
    .about-section {
      max-width: 100%;
      margin-top: 40px;
      padding: 0 20px;
      flex-wrap: wrap;
    }

    .contact-section {
      flex-direction: column;
    }
  }
  
  .about-content {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 682px;
  }
  
  @media (max-width: 991px) {
    .about-content {
      max-width: 100%;
    }
  }
  
  .about-text {
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .about-text {
      max-width: 100%;
    }
  }
  
  .about-description {
    color: rgba(21, 21, 21, 1);
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .about-description {
      max-width: 100%;
    }
  }
  
  .highlight-text {
    font-weight: 700;
    font-size: 22px;
    color: rgba(160, 0, 218, 1);
  }
  
  .about-image {
    aspect-ratio: 3.41;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 24px;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .about-image {
      max-width: 100%;
    }
  }
  
  .about-side-image {
    aspect-ratio: 0.68;
    object-fit: contain;
    object-position: center;
    width: 488px;
    border-radius: 24px;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
  }
  
  @media (max-width: 991px) {
    .about-side-image {
      max-width: 100%;
    }
  }
  
  .courses-section {
    display: flex;
    margin-top: 80px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    padding: 0 80px;
  }
  
  @media (max-width: 991px) {
    .courses-section {
      max-width: 100%;
      margin-top: 40px;
      padding: 0 20px;
    }
  }
  
  .courses-grid {
    display: flex;
    margin-top: 30px;
    width: 100%;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .courses-grid {
      max-width: 100%;
    }
  }
  
  .course-card {
    border-radius: 24px;
    background-color: rgba(21, 21, 21, 1);
    align-self: stretch;
    display: flex;
    min-width: 240px;
    padding: 20px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
    flex-shrink: 1;
    width: 310px;
  }
  
  .course-content {
    min-height: 385px;
    width: 100%;
    font-weight: 400;
  }
  
  .course-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 34px;
  }
  
  .course-text {
    margin-top: 20px;
    flex: 1;
  }
  
  .course-title {
    font-weight: 700;
    font-size: 22px;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 15px 0;
  }
  
  .course-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
  }
  
  .course-list li {
    margin-bottom: 10px;
  }
  
  .details-button {
    display: inline-block;
    border-radius: 12px;
    margin-top: 20px;
    width: 182px;
    max-width: 100%;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: white;
    background-color: rgba(160, 0, 218, 1);
    padding: 25px 18px;
  }
  
  @media (max-width: 991px) {
    .details-button {
      padding: 25px 20px;
      white-space: initial;
    }
  }
  
  .instructors-section {
    margin-top: 80px;
    padding: 0 80px;
  }
  
  @media (max-width: 991px) {
    .instructors-section {
      max-width: 100%;
      margin-top: 40px;
      padding: 0 20px;
    }
  }
  
  .instructors-content {
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .instructors-content {
      max-width: 100%;
    }
  }
  
  .instructors-description {
    color: rgba(21, 21, 21, 1);
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .instructors-description {
      max-width: 100%;
    }
  }
  
  .instructors-image {
    aspect-ratio: 4;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 24px;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .instructors-image {
      max-width: 100%;
    }
  }
  
  .contact-section {
    display: flex;
    margin-top: 80px;
    align-items: flex-end;
    gap: 30px;
    justify-content: start;
  }
  
  @media (max-width: 991px) {
    .contact-section {
      margin-top: 40px;
      padding: 0 20px;
    }
  }
  
  .contact-info {
    min-width: 240px;
    width: 682px;
  }
  
  @media (max-width: 991px) {
    .contact-info {
      max-width: 100%;
    }
  }
  
  .contact-text {
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .contact-text {
      max-width: 100%;
    }
  }
  
  .contact-title {
    color: rgba(160, 0, 218, 1);
    font-size: 50px;
    font-weight: 700;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .contact-title {
      max-width: 100%;
      font-size: 40px;
    }
  }
  
  .contact-description {
    color: rgba(21, 21, 21, 1);
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .contact-description {
      max-width: 100%;
    }
  }
  
  .contact-highlight {
    font-weight: 700;
    color: rgba(160, 0, 218, 1);
  }
  
  .contact-image {
    aspect-ratio: 2.62;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 24px;
    margin-top: 30px;
  }
  
  @media (max-width: 991px) {
    .contact-image {
      max-width: 100%;
    }
  }
  
  .contact-form-container {
    border-radius: 24px;
    background-color: rgba(21, 21, 21, 1);
    display: flex;
    min-width: 240px;
    padding: 20px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    font-size: 14px;
    white-space: nowrap;
    justify-content: center;
    width: 488px;
  }
  
  @media (max-width: 991px) {
    .contact-form-container {
      max-width: 100%;
      white-space: initial;
    }
  }
  
  .contact-form {
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .contact-form {
      max-width: 100%;
      white-space: initial;
    }
  }
  
  .form-fields {
    width: 100%;
    color: #151515;
    font-weight: 400;
  }
  
  @media (max-width: 991px) {
    .form-fields {
      max-width: 100%;
      white-space: initial;
    }
  }
  
  .form-field {
    border-radius: 12px;
    width: 100%;
    margin-bottom: 12px;
  }
  
  @media (max-width: 991px) {
    .form-field {
      max-width: 100%;
      white-space: initial;
    }
  }
  
  .form-input {
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 1);
    padding: 18px 20px;
    width: 100%;
    border: none;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 14px;
  }
  
  .form-textarea {
    height: 100px;
    resize: vertical;
  }
  
  @media (max-width: 991px) {
    .form-input {
      max-width: 100%;
      white-space: initial;
    }
  }
  
  .submit-button {
    border-radius: 12px;
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgba(160, 0, 218, 1);
    padding: 25px 45px;
    border: none;
    cursor: pointer;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 14px;
  }
  
  @media (max-width: 991px) {
    .submit-button {
      white-space: initial;
      padding: 25px 20px;
    }
  }
  
  .footer {
    border-radius: 26px;
    background-color: rgba(21, 21, 21, 1);
    display: flex;
    margin-top: 80px;
    padding: 20px 30px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    justify-content: center;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .footer {
      max-width: 95%;
      padding: 20px;
      margin: 0 auto;
      margin-top: 40px;
    }
  }
  
  .footer-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
  }
  
  @media (max-width: 991px) {
    .footer-content {
      max-width: 100%;
    }
  }
  
  .footer-logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
  }
  
  .footer-nav {
    align-self: start;
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 20px;
    justify-content: start;
  }
  
  .copyright {
    color: #ffffff;
    margin-top: 20px;
  }
  