/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 60px 0;
}

/* Typography */
h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #b44845;
  color: white;
}

.primary-btn:hover {
  background-color: #9c3f3c;
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  background-color: #2aaa9e;
  padding: 15px 0;
  z-index: 100;
  color: white;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu {
  display: flex;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  transition: opacity 0.3s ease;
}

.menu a:hover {
  opacity: 0.8;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background-color: #2aaa9e;
  color: white;
  padding: 150px 0 80px;
  background-image: url(../images/hero.png);
  background-position: left center;
  background-size: cover;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  margin-bottom: 30px;
}

.hero-content p {
  margin-bottom: 30px;
}

/* Services Section */
.services {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  padding: 20px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

/* About Section */
.about {
  background-color: #f8f8f8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
}

/* Facts Section */
.facts {
  background-color: #fff;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.fact-card {
  padding: 40px 30px;
  color: white;
}

.fact-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.fact-card.red {
  background-color: #b44845;
}

.fact-card.teal {
  background-color: #2aaa9e;
}

.fact-card.green {
  background-color: #2ca581;
}

.fact-img {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.fact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f8f8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  position: relative;
  margin-bottom: 20px;
}

.quote {
  font-size: 60px;
  line-height: 0;
  color: #2aaa9e;
  position: absolute;
  top: 20px;
  left: -15px;
  opacity: 0.3;
}

.testimonial-author {
  text-align: right;
}

/* Innovation Section */
.innovation {
  background-color: #fff;
}

.innovation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.innovation-text h2 {
  text-align: left;
}

/* Process Section */
.process {
  background-color: #2aaa9e;
  color: #fff;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-steps h3 {
  margin-bottom: 15px;
}

.process-steps ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.process-steps li {
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  height: 150px;
  resize: vertical;
}

form button {
  width: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: #2aaa9e;
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Thank You Page */
.thank-you {
  padding: 150px 0 80px;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-content h1 {
  margin-bottom: 30px;
}

.thank-you-content p {
  margin-bottom: 30px;
}

.thank-you-content .btn {
  margin-top: 20px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  max-width: 80%;
  width: 100%;
}

.cookie-content .btn {
  background-color: #2aaa9e;
  color: white;
  padding: 8px 20px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .burger-menu {
      display: flex;
  }

  .nav-wrapper {
      position: relative;
  }

  .menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: #2aaa9e;
      padding: 20px;
      text-align: center;
  }

  .menu.active {
      display: flex;
  }

  .menu li {
      margin: 10px 0;
  }
}

@media (max-width: 768px) {
  h1 {
      font-size: 32px;
  }

  h2 {
      font-size: 26px;
  }

  .about-content,
  .innovation-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .facts-grid {
      grid-template-columns: 1fr;
  }

  .testimonials-grid {
      grid-template-columns: 1fr;
  }

  .footer-content {
      flex-direction: column;
      text-align: center;
  }

  .footer-links {
      margin-top: 20px;
  }

  .footer-links a {
      margin: 0 10px;
  }

  .cookie-content {
      flex-direction: column;
  }

  .cookie-content p {
      max-width: 100%;
      margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .services-grid {
      grid-template-columns: 1fr;
  }

  .hero {
      padding: 120px 0 60px;
  }

  section {
      padding: 40px 0;
  }
}

              
              .page {
                padding: 80px 0;
              }
              
              .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: 30px;
                    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;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                