/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #d75698;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c1498a;
}

.btn-secondary {
    background-color: #fff;
    color: #d75698;
    border: 1px solid #d75698;
}

.btn-secondary:hover {
    background-color: #f8f8f8;
}

/* Header Styles */
.header {
    background-color: #d75698;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
}

.nav-desktop ul li a {
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-desktop ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-desktop ul li a:hover:after {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.burger-menu span:nth-child(1) {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 9px;
}

.burger-menu span:nth-child(3) {
    bottom: 0;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #d75698;
    padding-top: 80px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav-mobile ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.about-images {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.about p {
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: calc(25% - 20px);
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
    text-align: center;
}

.stat-item h3 {
    color: #d75698;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #d75698;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon span {
    color: #fff;
    font-weight: 600;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Process Section */
.process {
    padding: 60px 0;
}

.process h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.process-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.process-image {
    flex: 1;
}

.process-image img {
    border-radius: 4px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.process-text {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.testimonials h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: #d75698;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #d75698;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.thank-you p {
    margin-bottom: 30px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .process-content {
        flex-direction: column;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: calc(50% - 20px);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .about-images {
        flex-direction: column;
    }

    .about-images img {
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        min-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-content {
        text-align: center;
    }

    h2 {
        font-size: 24px;
    }

    .service-item {
        padding: 20px;
    }
}
              .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;
                }

                