/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: #0a6b3b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #085330;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

/* Header Styles */
.header {
    background-color: #0a6b3b;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.nav__list {
    display: flex;
}

.nav__item {
    margin-left: 30px;
}

.nav__link {
    position: relative;
}

.nav__link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.nav__link:hover:after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 50px 0;
    text-align: center;
}

.hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__image {
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__text {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
}

.about__text {
    text-align: justify;
}

/* Services Section */
.services {
    padding: 60px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #0a6b3b;
    color: white;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card__title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Success Story Section */
.success-story {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.success-story__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

/* Blog Section */
.blog {
    padding: 60px 0;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card__title {
    font-size: 18px;
    padding: 15px 15px 10px;
}

.blog-card__text {
    padding: 0 15px 15px;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.contact__form-container {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form__input {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-form__btn {
    align-self: flex-end;
}

/* Footer Section */
.footer {
    background-color: #0a6b3b;
    color: white;
    padding: 30px 0;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__links {
    margin-top: 20px;
    display: flex;
    gap: 30px;
}

.footer__link {
    position: relative;
}

.footer__link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: white;
    left: 0;
    bottom: -3px;
    transition: width 0.3s;
}

.footer__link:hover:after {
    width: 100%;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
    text-align: center;
}

.thank-you__content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you__title {
    font-size: 32px;
    margin-bottom: 30px;
}

.thank-you__text {
    margin-bottom: 40px;
}

.thank-you__btn {
    margin-top: 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    z-index: 1000;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent__buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.cookie-consent__link {
    color: white;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #0a6b3b;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s;
        z-index: 99;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav__item {
        margin: 10px 0;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent__buttons {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form__btn {
        align-self: center;
        width: 100%;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 15px;
    }
}
              .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;
                }

                