/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:
      Raleway,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }
  
  .mainpage {
    background-color: rgba(240, 241, 248, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    font-family:
      Raleway,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }

  @media screen and (max-width: 991px) {
    section {
      padding: 0px 20px;
    }
  }
  
  /* Header section */
  .header {
    border-radius: 0 0 100px 100px;
    background-color: rgba(12, 11, 29, 1);
    align-self: stretch;
    display: flex;
    width: 100%;
    padding: 25px 80px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
  }
  
  .header-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo {
    color: rgba(174, 223, 55, 1);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: stretch;
    margin: auto 0;
  }
  
  .nav-links {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    justify-content: start;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    align-self: stretch;
    margin: auto 0;
  }
  
  /* Hero section */
  .hero-section {
    align-self: center;
    display: flex;
    margin-top: 30px;
    width: 100%;
    max-width: 1127px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
  }
  
  .hero-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
  }
  
  .hero-text {
    width: 100%;
    color: rgba(255, 255, 255, 1);
    text-align: center;
  }
  
  .hero-title {
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .hero-description {
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
  }
  
  .cta-container {
    border-radius: 0;
    align-self: center;
    margin-top: 30px;
    width: 360px;
    max-width: 100%;
    font-size: 14px;
    color: rgba(12, 11, 29, 1);
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .cta-button {
    border-radius: 60px;
    background-color: rgba(174, 223, 55, 1);
    display: flex;
    width: 100%;
    padding: 18px 36px;
    gap: 8px;
    align-items: stretch;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }
  
  .cta-text {
    align-self: stretch;
    margin: auto 0;
  }
  
  .cta-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 30px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
  }
  
  .hero-image {
    aspect-ratio: 0.97;
    object-fit: contain;
    object-position: center;
    width: 288px;
    align-self: center;
    margin-top: 20px;
    max-width: 100%;
  }
  
  /* Technology section */
  .technology-section {
    display: flex;
    margin-top: 80px;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    color: rgba(12, 11, 29, 1);
    justify-content: start;
    flex-wrap: wrap;
  }
  
  .technology-content {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 590px;
  }
  
  .section-title {
    font-size: 54px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .section-description {
    font-weight: 400;
    margin-top: 30px;
  }
  
  .technology-image {
    aspect-ratio: 1.09;
    object-fit: contain;
    object-position: center;
    width: 570px;
    border-radius: 28px;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
  }
  
  /* Advantages section */
  .advantages-section {
    display: flex;
    margin-top: 80px;
    width: 100%;
    max-width: 1201px;
    flex-direction: column;
    align-items: start;
    color: rgba(12, 11, 29, 1);
    justify-content: start;
  }
  
  .advantages-header {
    min-height: 109px;
    width: 590px;
    max-width: 100%;
  }
  
  .subtitle {
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
    flex: 1;
  }
  
  .advantages-grid {
    align-self: stretch;
    margin-top: 30px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
  }
  
  .advantages-row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  .advantages-row:nth-child(2) {
    margin-top: 20px;
  }
  
  .advantage-card {
    border-radius: 28px;
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    padding: 20px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: center;
    flex-grow: 1;
    flex-shrink: 1;
    width: 310px;
  }
  
  .advantage-card.white {
    background-color: rgba(255, 255, 255, 1);
  }
  
  .advantage-card.green {
    background-color: rgba(174, 223, 55, 1);
  }
  
  .advantage-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 50px;
  }
  
  .advantage-content {
    margin-top: 15px;
  }
  
  .advantage-title {
    font-weight: 600;
    font-size: 26px;
    color: rgba(12, 11, 29, 1);
    margin-bottom: 15px;
  }
  
  /* Stats section */
  .stats-section {
    margin-top: 80px;
    width: 100%;
    max-width: 1200px;
    color: rgba(12, 11, 29, 1);
    text-align: center;
  }
  
  .stats-grid {
    display: flex;
    margin-top: 30px;
    width: 100%;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 400;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  .stat-card {
    align-self: stretch;
    margin: auto 0;
    flex-grow: 1;
    flex-shrink: 1;
    width: 228px;
  }
  
  .stat-number {
    font-weight: 600;
    font-size: 66px;
    color: rgba(174, 223, 55, 1);
    display: block;
    margin-bottom: 15px;
  }
  
  /* Tech details section */
  .tech-details-section {
    display: flex;
    margin-top: 80px;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    color: rgba(12, 11, 29, 1);
    justify-content: start;
    flex-wrap: wrap;
  }
  
  .tech-image {
    aspect-ratio: 0.94;
    object-fit: contain;
    object-position: center;
    width: 570px;
    border-radius: 28px;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
  }
  
  .tech-content {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 590px;
  }
  
  .tech-description {
    font-weight: 400;
    margin-top: 30px;
  }
  
  .features-title {
    font-weight: 600;
    font-size: 26px;
    margin: 20px 0;
  }
  
  .features-list {
    list-style-type: none;
  }
  
  .features-list li {
    margin: 15px 0;
  }
  
  /* Contact section */
  .contact-section {
    border-radius: 100px 100px 0 0;
    background-color: rgba(12, 11, 29, 1);
    align-self: stretch;
    display: flex;
    margin-top: 80px;
    width: 100%;
    padding: 40px 80px;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  
  .contact-container {
    display: flex;
    width: 100%;
    max-width: 1127px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
  }
  
  .contact-info {
    width: 100%;
    color: rgba(255, 255, 255, 1);
    text-align: center;
  }
  
  .contact-title {
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .contact-description {
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
  }
  
  .contact-form-container {
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 1);
    align-self: center;
    display: flex;
    margin-top: 30px;
    width: 488px;
    max-width: 100%;
    padding: 23px 20px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    font-size: 14px;
    justify-content: center;
  }
  
  .form-fields {
    width: 100%;
    color: #0c0b1d;
    font-weight: 400;
  }
  
  .form-field {
    border-radius: 60px;
    width: 100%;
    white-space: nowrap;
    margin-top: 12px;
    border-radius: 60px;
    background-color: rgba(0, 26, 75, 0.07);
    padding: 18px 20px;
    display: block;
    width: 100%;
    border: none;
  }
  
  .form-field:first-child {
    margin-top: 0;
  }

  .main-section .cta-button {
    width: auto;
    margin-top: 30px;
  }

  .main-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .popup {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #AEDF37;
    padding: 30px;
    border-radius: 30px;
    max-width: 460px;
  }

  .popup-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 20px 0px;
  }

  .btn-secondary {
    background: #0C0B1D !important;
    color: #FFFFFF;
  }

  .btn-outline {
    background: none !important;
    color: #0C0B1D;
    border: 1px solid #0C0B1D !important;
  }

  .popup-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  
  .form-submit {
    border-radius: 0;
    margin-top: 20px;
    width: 100%;
    color: rgba(12, 11, 29, 1);
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
  }
  
  .submit-button {
    border: none;
    cursor: pointer;
    border-radius: 60px;
    background-color: rgba(174, 223, 55, 1);
    display: flex;
    width: 100%;
    padding: 18px 49px;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .main-section {
    margin: 80px 0px;
    padding: 0px 20px;
  }
  
  .submit-text {
    align-self: stretch;
    margin: auto 0;
    font-family: Raleway;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

  }
  
  /* Footer section */
  .footer {
    background-color: rgba(12, 11, 29, 1);
    align-self: stretch;
    display: flex;
    width: 100%;
    padding: 20px 80px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    justify-content: center;
  }
  
  .footer-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
  }
  
  .footer-logo {
    color: rgba(174, 223, 55, 1);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .footer-links {
    align-self: start;
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 20px;
    justify-content: start;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
  }
  
  .copyright {
    margin-top: 20px;
  }

  html {
    scroll-behavior: smooth;
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .header {
      max-width: 100%;
      padding: 25px 20px;
    }
  
    .header-content {
      max-width: 100%;
    }
  
    .hero-section {
      max-width: 100%;
    }
  
    .hero-content {
      max-width: 100%;
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    .hero-title {
      max-width: 100%;
      font-size: 40px;
    }
  
    .hero-description {
      max-width: 100%;
    }
  
    .cta-button {
      padding: 18px 20px;
    }
  
    .technology-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .technology-content {
      max-width: 100%;
    }
  
    .section-title {
      max-width: 100%;
      font-size: 40px;
    }
  
    .section-description {
      max-width: 100%;
    }
  
    .technology-image {
      max-width: 100%;
    }
  
    .advantages-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .subtitle {
      max-width: 100%;
    }
  
    .advantages-grid {
      max-width: 100%;
    }
  
    .advantages-row {
      max-width: 100%;
    }
  
    .cta-button {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .stats-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .stats-grid {
      max-width: 100%;
    }
  
    .tech-details-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .tech-image {
      max-width: 100%;
    }
  
    .tech-content {
      max-width: 100%;
    }
  
    .tech-description {
      max-width: 100%;
    }
  
    .contact-section {
      max-width: 100%;
      padding: 40px 20px;
      margin-top: 40px;
    }
  
    .contact-container {
      max-width: 100%;
    }
  
    .contact-info {
      max-width: 100%;
    }
  
    .contact-title {
      max-width: 100%;
      font-size: 40px;
    }
  
    .contact-description {
      max-width: 100%;
    }
  
    .form-field {
      max-width: 100%;
      white-space: initial;
    }
  
    .form-label {
      max-width: 100%;
      white-space: initial;
    }
  
    .form-submit {
      white-space: initial;
    }
  
    .submit-button {
      max-width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      white-space: initial;
    }
  
    .footer {
      max-width: 100%;
      padding: 20px;
    }
  
    .footer-content {
      max-width: 100%;
    }
  }
  