/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
    color: #000000;
  }
  body {
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    background-color: #000000;
  }
  
  /* Page container */
  .page-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    padding-bottom: 55px;
    width: 100%;
  }
  
  /* Hero section */
  .hero-section {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    position: relative;
    min-height: 735px;
    width: 100%;
    text-align: center;
  }
  
  .hero-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-overlay {
    position: relative;
    background-color: rgba(0, 0, 0, 0.73);
    width: 100%;
    padding: 55px 78px 188px;
  }
  
  .logo {
    align-self: stretch;
    width: 250px;
    border-radius: 56px;
    background-color: #ebff00;
    min-height: 80px;
    padding: 29px 40px;
    overflow: hidden;
    font-family:
      Open Sans,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
    width: 100%;
  }
  
  .hero-content {
    display: flex;
    margin-top: 159px;
    margin-bottom: -38px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    color: #ffffff;
    font-weight: 400;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 32px;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }
  
  .hero-description {
    font-size: 12px;
    margin-top: 40px;
  }
  
  .cta-container {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: center;
    gap: 8px;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    line-height: 1.2;
    justify-content: center;
  }
  
  .cta-button {
    align-self: stretch;
    border-radius: 20px;
    background-color: #ebff00;
    min-width: 240px;
    margin: auto;
    padding: 24px 80px;
    border: none;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* About section */
  .about-section {
    display: flex;
    margin-top: 52px;
    width: 100%;
    max-width: 1043px;
    align-items: flex-start;
    gap: 40px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-content {
    min-width: 240px;
    flex: 1;
    flex-basis: 0%;
  }
  
  .section-title {
    font-size: 32px;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }
  
  .section-text {
    margin-top: 40px;
  }
  
  .about-image {
    aspect-ratio: 1.21;
    object-fit: contain;
    object-position: center;
    width: 462px;
    min-width: 240px;
  }
  
  /* Pricing section */
  .pricing-section {
    display: flex;
    margin-top: 52px;
    width: 100%;
    max-width: 1043px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    justify-content: center;
  }
  
  .pricing-container {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    min-width: 240px;
    flex: 1;
    flex-basis: 0%;
  }
  
  .pricing-title {
    color: #ebff00;
    font-size: 22px;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    text-transform: uppercase;
  }
  
  .pricing-details {
    margin-top: 40px;
    line-height: 20px;
  }
  
  /* Features section */
  .features-section {
    display: flex;
    margin-top: 83px;
    width: 100%;
    max-width: 1043px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    justify-content: center;
  }
  
  .features-title {
    color: #ebff00;
    font-size: 32px;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }
  
  .features-container {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: flex-start;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .feature-card {
    flex: 1;
    flex-basis: 0%;
    display: flex;
    flex-direction: column;
  }
  
  .feature-title {
    color: #ebff00;
    font-size: 22px;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    align-self: center;
  }
  
  .feature-description {
    margin-top: 40px;
  }
  
  /* Leadership section */
  .leadership-section {
    display: flex;
    margin-top: 99px;
    width: 100%;
    max-width: 1043px;
    align-items: flex-start;
    gap: 40px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .leadership-image {
    aspect-ratio: 1.21;
    object-fit: contain;
    object-position: center;
    width: 462px;
    min-width: 240px;
  }
  
  .leadership-content {
    min-width: 240px;
    flex: 1;
    flex-basis: 0%;
  }
  
  /* Contact section */
  .contact-section {
    display: flex;
    margin-top: 127px;
    min-height: 639px;
    width: 100%;
    max-width: 1043px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  
  .contact-title {
    width: 100%;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 32px;
    color: #ebff00;
    text-align: center;
  }
  
  .contact-subtitle {
    font-size: 24px;
    text-align: center;
    margin-top: 60px;
  }
  
  .contact-text {
    font-size: 12px;
    text-align: center;
    margin-top: 60px;
  }
  
  .contact-form {
    align-self: center;
    margin-top: 60px;
    width: 357px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 700;
  }
  
  .form-input {
    align-self: stretch;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
  
  .form-input:first-child {
    margin-top: 0;
  }
  
  .form-button {
    display: flex;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 28px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    border-radius: 20px;
    background-color: #ebff00;
    padding: 24px 7px 24px 6px;
    border: none;
    cursor: pointer;
  }
  
  /* Company address */
  .company-address {
    color: #ffffff;
    font-size: 16px;
    font-family:
      Lexend Zetta,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 400;
    text-align: center;
    margin-top: 34px;
    font-style: normal;
  }
  
  /* Footer */
  .footer {
    border-radius: 48px;
    background-color: #ebff00;
    display: flex;
    margin-top: 61px;
    width: 100%;
    max-width: 1043px;
    padding: 20px 40px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    font-size: 12px;
    color: #000000;
    text-align: center;
    justify-content: center;
  }
  
  .footer-container {
    display: flex;
    width: 100%;
    max-width: 963px;
    align-items: center;
    gap: 40px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .copyright {
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 400;
    align-self: stretch;
    margin: auto 0;
  }
  
  .footer-links {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    gap: 8px;
    font-family:
      Montserrat,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    justify-content: flex-start;
  }
  
  .links-container {
    border-radius: 20px;
    background-color: #ebff00;
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    padding: 8px;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
  
  .footer-link {
    align-self: stretch;
    margin: auto 0;
    color: #000000;
    text-decoration: none;
  }
  
  /* Media queries */
  @media (max-width: 991px) {
    .hero-section {
      max-width: 100%;
    }
  
    .hero-overlay {
      max-width: 100%;
      padding: 55px 20px 100px;
    }
  
    .logo {
      padding: 29px 20px;
      white-space: initial;
    }
  
    .hero-content {
      max-width: 100%;
      margin-bottom: 10px;
      margin-top: 40px;
    }
  
    .hero-title {
      max-width: 100%;
    }
  
    .hero-description {
      max-width: 100%;
    }
  
    .cta-container {
      max-width: 100%;
    }
  
    .cta-button {
      padding: 24px 20px;
    }
  
    .about-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .about-content {
      max-width: 100%;
    }
  
    .section-title {
      max-width: 100%;
    }
  
    .section-text {
      max-width: 100%;
    }
  
    .about-image {
      max-width: 100%;
    }
  
    .pricing-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .pricing-container {
      max-width: 100%;
    }
  
    .features-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .features-title {
      max-width: 100%;
    }
  
    .features-container {
      max-width: 100%;
    }
  
    .leadership-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .leadership-image {
      max-width: 100%;
    }
  
    .leadership-content {
      max-width: 100%;
    }
  
    .contact-section {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .contact-title {
      max-width: 100%;
    }
  
    .contact-subtitle {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .contact-text {
      max-width: 100%;
      margin-top: 40px;
    }
  
    .contact-form {
      margin-top: 40px;
    }
  
    .company-address {
      max-width: 100%;
    }
  
    .footer {
      max-width: 100%;
      padding: 20px;
      margin-top: 40px;
    }
  
    .footer-container {
      max-width: 100%;
    }
  }
  

  .privacy-section .hero-overlay{
    padding: 55px 78px 50px;
  }
  .privacy-section .hero-overlay h2{
    color: #FFF;
    text-align: center;
    font-family: "Lexend Zetta";
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
  }
  .privacy-section .hero-overlay p{
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
  }
  .privacy-section .hero-overlay ul{
    margin-top: 20px;
    padding-left: 20px;
  }
  @media (max-width: 1024px) {
    .privacy-section .hero-overlay h2{
      font-size: 30px;
    }
  }


.content_bottom_cookies {
  position: fixed;
  bottom: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000;
  width: 95%;
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 5;
  row-gap: 20px;
  opacity: 0;
  -webkit-transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  padding: 40px 60px;
}

@media (max-width: 1070px) {
  .content_bottom_cookies {
    padding: 40px 20px;
  }
}

.content_bottom_cookies.show {
  bottom: 20px;
  opacity: 1;
}

@media (max-width: 600px) {
  .content_bottom_cookies {
    width: 90%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.content_bottom_cookies h5 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.content_bottom_cookies p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
  color: #fff;
}

.content_bottom_cookies .content_bottom_btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 20px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.content_bottom_cookies .content_bottom_btn button {
  width: 100%;
  background-color: #fff;
  color: #000;
  width: 179px;
  border-radius: 20px;
  border: 1px solid #fff;
  height: 48px;
  cursor: pointer;
}

