* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

/* Main container */
.main-container {
  background-color: rgba(29, 29, 29, 1);
  display: flex;
  padding-bottom: 55px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

/* Hero section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  position: relative;
  min-height: 735px;
  width: 100%;
}

@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
 
  width: 100%;
  padding: 55px 79px 138px;
}

@media (max-width: 991px) {
  .hero-overlay {
    max-width: 100%;
    padding: 55px 20px 100px;
  }
}

.logo {
  align-self: stretch;
  width: 100%;
  display: flex;
  justify-content: center;
  text-decoration: none;
  border-radius: 56px;
  background-color: rgba(255, 0, 81, 1);
  min-height: 80px;
  padding: 29px 40px;
  overflow: hidden;
  font-family:
    Open Sans,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: rgba(29, 29, 29, 1);
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .logo {
    padding: 29px 20px;
    white-space: initial;
  }
}

.hero-content {
  display: flex;
  margin-top: 74px;
  margin-bottom: -28px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
    margin-bottom: 10px;
    margin-top: 40px;
  }
}

.hero-title {
  font-size: 64px;
  font-family:
    Krona One,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .hero-title {
    max-width: 100%;
    font-size: 40px;
  }
}

.hero-description {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .hero-description {
    max-width: 100%;
  }
}

.hero-cta-text {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .hero-cta-text {
    max-width: 100%;
  }
}

.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;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  justify-content: start;
}

@media (max-width: 991px) {
  .cta-container {
    max-width: 100%;
  }
}

.cta-button {
  text-decoration: none;
  align-self: stretch;
  border-radius: 20px;
  background-color: rgba(255, 0, 81, 1);
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 24px 80px;
  gap: 10px;
  border: none;
  color: white;
  cursor: pointer;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .cta-button {
    padding: 24px 20px;
  }
}

/* Achievements section */
.achievements-section {
  background-color: rgba(255, 0, 81, 1);
  align-self: stretch;
  display: flex;
  width: 100%;
  padding: 44px 78px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Krona One,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991px) {
  .achievements-section {
    max-width: 100%;
    padding: 44px 20px;
  }
}

.section-title {
  font-size: 32px;
  align-self: center;
}

@media (max-width: 991px) {
  .section-title {
    max-width: 100%;
  }
}

.stats-container {
  display: flex;
  margin-top: 59px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-size: 20px;
  text-transform: uppercase;
  justify-content: center;
}

@media (max-width: 991px) {
  .stats-container {
    max-width: 100%;
    margin-top: 40px;
  }
}

.stats-wrapper {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 40px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .stats-wrapper {
    max-width: 100%;
  }
}

.stat-item {
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.about-container {
  display: flex;
  margin-top: 41px;
  min-height: 306px;
  align-items: start;
  gap: 40px;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .about-container {
    max-width: 100%;
    margin-top: 40px;
  }
}

.about-image {
  aspect-ratio: 1.68;
  object-fit: contain;
  object-position: center;
  width: 462px;
  min-width: 240px;
}

@media (max-width: 991px) {
  .about-image {
    max-width: 100%;
  }
}

.about-content {
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

@media (max-width: 991px) {
  .about-content {
    max-width: 100%;
  }
}

.about-title {
  font-size: 32px;
  font-family:
    Krona One,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .about-title {
    max-width: 100%;
  }
}

.about-description {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .about-description {
    max-width: 100%;
  }
}

/* Services section */
.services-section {
  display: flex;
  margin-top: 51px;
  width: 100%;
  max-width: 1073px;
  padding: 0 15px;
  flex-direction: column;
  align-items: stretch;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .services-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.section-subtitle {
  font-size: 20px;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  align-self: center;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .section-subtitle {
    max-width: 100%;
  }
}

.services-grid {
  display: flex;
  margin-top: 40px;
  width: 100%;
  align-items: start;
  gap: 40px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .services-grid {
    max-width: 100%;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.service-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 238px;
  align-self: center;
  max-width: 100%;
}

.service-title {
  font-size: 22px;
  font-family:
    Krona One,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  text-transform: uppercase;
  margin-top: 40px;
}

.service-description {
  font-size: 12px;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  margin-top: 40px;
}

/* Purpose section */
.purpose-section {
  display: flex;
  margin-top: 79px;
  width: 100%;
  max-width: 1073px;
  padding: 0 15px;
  align-items: start;
  gap: 40px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .purpose-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.purpose-image {
  aspect-ratio: 1.21;
  object-fit: contain;
  object-position: center;
  width: 462px;
  min-width: 240px;
}

@media (max-width: 991px) {
  .purpose-image {
    max-width: 100%;
  }
}

.purpose-content {
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

@media (max-width: 991px) {
  .purpose-content {
    max-width: 100%;
  }
}

.purpose-title {
  font-size: 32px;
  font-family:
    Krona One,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .purpose-title {
    max-width: 100%;
  }
}

.purpose-description {
  font-size: 12px;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .purpose-description {
    max-width: 100%;
  }
}

/* Blueprint section */
.blueprint-section {
  display: flex;
  margin-top: 43px;
  
  min-height: 629px;
  width: 100%;
  max-width: 1073px;
  padding: 0 15px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  justify-content: start;
}

@media (max-width: 991px) {
  .blueprint-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.blueprint-title {
  width: 100%;
  font-family:
    Krona One,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 32px;
  text-align: center;
}

@media (max-width: 991px) {
  .blueprint-title {
    max-width: 100%;
  }
}

.blueprint-subtitle {
  font-size: 24px;
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .blueprint-subtitle {
    max-width: 100%;
    margin-top: 40px;
  }
}

.blueprint-description {
  font-size: 12px;
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .blueprint-description {
    max-width: 100%;
    margin-top: 40px;
  }
}

.contact-form {
  align-self: center;
  margin-top: 60px;
  width: 357px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .contact-form {
    margin-top: 40px;
  }
}

.form-input {
  align-self: stretch;
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  padding: 10px;
  gap: 10px;
  white-space: nowrap;
  margin-top: 20px;
  border: none;
  color: white;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.form-input:first-child {
  margin-top: 0;
}

@media (max-width: 991px) {
  .form-input {
    white-space: initial;
  }
}

.form-button-container {
  display: flex;
  margin-top: 20px;
  width: 100%;
  align-items: center;
  gap: 8px;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  justify-content: center;
}

.form-submit-button {
  align-self: stretch;
  border-radius: 20px;
  background-color: rgba(255, 0, 81, 1);
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  padding: 24px 7px 24px 6px;
  gap: 10px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  border: none;
  color: white;
  cursor: pointer;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 28px;
  font-weight: 500;
}

/* Contact info */
.contact-info {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-family:
    Lexend Zetta,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  text-align: center;
  margin-top: 44px;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .contact-info {
    max-width: 100%;
    margin-top: 40px;
  }
}

/* Footer */
.footer {
  border-radius: 48px;
  background-color: rgba(255, 0, 81, 1);
  display: flex;
  margin-top: 40px;
  width: 100%;
  max-width: 1043px;
  padding: 20px 40px;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .footer {
    max-width: 100%;
    padding: 20px;
  }
}

.footer-content {
  display: flex;
  width: 100%;
  max-width: 963px;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .footer-content {
    max-width: 100%;
  }
}

.copyright {
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.footer-links-container {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  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: start;
}

.footer-links {
  border-radius: 20px;
  background-color: rgba(255, 0, 81, 1);
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.footer-link {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  color: white;
  text-decoration: none;
}


/* BURGER */
    
.burger {
    display: none;
}

    @media (max-width: 900px) {
            .burger {
                width: 30px;
                height: 17px;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                background: none;
                border: none;
                cursor: pointer;
                z-index: 10;
              }
              
              .burger span {
                display: block;
                height: 3px;
                width: 100%;
                background-color: #fff;
                border-radius: 2px;
                transition: 0.3s;
              }
              
              /* Анімація в активному стані */
              .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
              }
              
              .burger.active span:nth-child(2) {
                opacity: 0;
              }
              
              .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
              }
            }

            .nav-list {
              display: flex;
              gap: 24px;
            }

            @media (max-width: 900px) {
                .main-header {
                    padding: 12px 20px;
                }
                .main-nav {
                  display: none;
                }
                .main-nav.active {
                    display: block;
                    width: 80%;
                    position: absolute;
                    height: 500px;
                    background-color: rgba(0, 0, 0, 1);
                    top: 46px;
                    right: 0;
                    padding: 20px;
                    z-index: 10;
                  }
                  .nav-list {

                    flex-direction: column;
                    align-items: flex-end;
                    width: 100%;
                   
                  }
              }         

              .container {
                width: 100%;
                max-width: 1230px;
                padding: 0 15px;
                margin: 0 auto;
              }  
              
              .page {
                padding: 80px 0;
                color: #fff;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
                  
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 24px;
                    text-transform: uppercase;
                   
                   
                  }
                 
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
            
                 margin-top: 0;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 16px;
                  font-weight: 500;
                 
                  text-transform: uppercase;
                  cursor: pointer;
                  width: fit-content;
                }