/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C2C3E;
    background-color: #FFFFFF;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    width: 100%;
}

* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #6B2C91 0%, #4A148C 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(107, 44, 145, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4C430 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4C430;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #F4C430;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6B2C91 0%, #4A148C 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(107, 44, 145, 0.8) 100%),
                url('./img/mdD52Y.jpg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F4C430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #6B2C91 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(244, 196, 48, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 576px) {
    .btn-cta:hover::before {
        width: 200px;
        height: 200px;
    }
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
}

/* Decorative Stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #F4C430;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #6B2C91;
    position: relative;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 2rem;
    color: #F4C430;
    margin-top: 0.5rem;
    animation: twinkle 2s infinite;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #E8D5FF 0%, #FFFFFF 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: #1A1A2E;
    color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(107, 44, 145, 0.3) 0%, rgba(255, 107, 157, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(244, 196, 48, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.4);
    border-color: #F4C430;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #F4C430;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.btn-service {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #6B2C91 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-service:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.5);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #E8D5FF 100%);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B2C91 0%, #FF6B9D 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(107, 44, 145, 0.3);
}

.process-content h4 {
    font-size: 1.5rem;
    color: #6B2C91;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #2C2C3E;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    background: #1A1A2E;
    color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(107, 44, 145, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(244, 196, 48, 0.3);
    animation: fadeInUp 0.8s ease both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.stars-rating {
    color: #F4C430;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #F4C430;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #E8D5FF 0%, #FFFFFF 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #E8D5FF;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6B2C91;
    box-shadow: 0 5px 15px rgba(107, 44, 145, 0.2);
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: #6B2C91;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #F4C430;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #2C2C3E;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #6B2C91 100%);
    color: #FFFFFF;
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #6B2C91;
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.3), 
                0 0 0 5px rgba(107, 44, 145, 0.1),
                0 0 0 10px rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before,
.form-container::after {
    content: '✦';
    position: absolute;
    font-size: 2rem;
    color: #F4C430;
    opacity: 0.3;
    animation: twinkle 3s infinite;
}

.form-container::before {
    top: 1rem;
    left: 1rem;
}

.form-container::after {
    bottom: 1rem;
    right: 1rem;
    animation-delay: 1.5s;
}

.form-title {
    text-align: center;
    font-size: 2rem;
    color: #6B2C91;
    margin-bottom: 2rem;
    position: relative;
}

.form-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6B2C91 0%, #F4C430 100%);
    margin: 1rem auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2C2C3E;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #E8D5FF;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #2C2C3E;
    background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B2C91;
    box-shadow: 0 0 0 3px rgba(107, 44, 145, 0.1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    color: #2C2C3E;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group a {
    color: #6B2C91;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #FF6B9D;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #6B2C91 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(244, 196, 48, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 576px) {
    .btn-submit:hover::before {
        width: 200px;
        height: 200px;
    }
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

/* Footer */
.main-footer {
    background: #4A148C;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #F4C430;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-column a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #F4C430;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 196, 48, 0.3);
}

.logo-footer {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4C430 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4A148C 0%, #6B2C91 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
    border-top: 3px solid #F4C430;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: #F4C430;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    opacity: 0.95;
}

@media (max-width: 576px) {
    .cookie-content p {
        min-width: auto;
        width: 100%;
    }
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #F4C430 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.5);
}

.btn-learn-more {
    padding: 0.75rem 2rem;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #F4C430;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: #F4C430;
    color: #4A148C;
}

/* Policy Pages */
.policy-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem 2rem;
    border: 2px solid #6B2C91;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.policy-title {
    font-size: 2.5rem;
    color: #6B2C91;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: #2C2C3E;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: #2C2C3E;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    color: #2C2C3E;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #6B2C91;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #FF6B9D;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #6B2C91 0%, #FF6B9D 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 44, 145, 0.4);
}

/* Thank You Page */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #E8D5FF 0%, #FFFFFF 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    background: #FFFFFF;
    border-radius: 20px;
    border: 3px solid #6B2C91;
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
    margin: 0 auto;
    position: relative;
}

.thank-you-content::before,
.thank-you-content::after {
    content: '✦';
    position: absolute;
    font-size: 2rem;
    color: #F4C430;
    opacity: 0.3;
    animation: twinkle 3s infinite;
}

.thank-you-content::before {
    top: 1rem;
    left: 1rem;
}

.thank-you-content::after {
    bottom: 1rem;
    right: 1rem;
    animation-delay: 1.5s;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #6B2C91;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    font-size: 1.125rem;
    color: #2C2C3E;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Simple Page (About, Blog, Tips) */
.simple-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.simple-content {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #6B2C91;
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.simple-content h1 {
    font-size: 2.5rem;
    color: #6B2C91;
    margin-bottom: 2rem;
    text-align: center;
}

.simple-content p {
    font-size: 1.125rem;
    color: #2C2C3E;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-container {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-buttons button,
    .cookie-buttons a {
        width: 100%;
        max-width: 100%;
        margin: 0.5rem 0;
    }
    
    .thank-you-content {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .btn-cta,
    .btn-submit,
    .btn-service {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .service-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 150px;
    }
    
    .main-nav {
        width: 100%;
        max-width: 100%;
    }
    
    .main-nav a {
        width: 100%;
        display: block;
        padding: 0.75rem;
    }
    
    .header-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    section {
        width: 100%;
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .footer-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .process-step {
        flex-direction: column;
        width: 100%;
    }
    
    .process-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .footer-column {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .cookie-popup {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
    }
    
    .cookie-content {
        width: 100%;
        max-width: 100%;
    }
    
    .main-header {
        width: 100%;
        max-width: 100%;
    }
    
    .main-footer {
        width: 100%;
        max-width: 100%;
    }
}

