/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7c3aed;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
}

.hero-visual {
    flex: 0 0 400px;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

@media (max-width: 968px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-visual {
        flex: 0 0 auto;
        max-width: 300px;
    }
}

/* Page Hero */
.page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #7c3aed;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #7c3aed;
    border-color: #7c3aed;
}

.btn-secondary:hover {
    background-color: #7c3aed;
    color: #ffffff;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 28px;
    }
}

/* Philosophy Section */
.philosophy {
    background-color: #f9fafb;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.philosophy-item {
    flex: 1;
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.philosophy-item h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
}

.philosophy-item p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .philosophy-grid {
        flex-direction: column;
    }
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
}

.benefits-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.benefits-content > p {
    margin-bottom: 30px;
    color: #4b5563;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
}

.benefits-list strong {
    color: #1f2937;
    display: block;
    margin-bottom: 5px;
}

/* Featured Service */
.featured-service {
    background-color: #f3f4f6;
}

.featured-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.featured-image {
    flex: 0 0 400px;
}

.featured-image svg {
    width: 100%;
    border-radius: 12px;
}

.featured-text {
    flex: 1;
}

.featured-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.featured-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-text .btn {
    margin-top: 20px;
}

@media (max-width: 968px) {
    .featured-grid {
        flex-direction: column;
    }

    .featured-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .featured-text h2 {
        text-align: center;
    }
}

/* Stats Section */
.stats {
    background-color: #7c3aed;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Process Section */
.process {
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.step p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .process-steps {
        flex-direction: column;
    }
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #7c3aed;
}

@media (max-width: 968px) {
    .testimonials-grid {
        flex-direction: column;
    }
}

/* Insights Section */
.insights {
    background-color: #ffffff;
}

.insights-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.insight-item h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.insight-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background-color: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #7c3aed;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-email {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

/* Story Section */
.story {
    background-color: #ffffff;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.story-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Values Section */
.values {
    background-color: #f9fafb;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Team Section */
.team {
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 40px;
}

.team-intro p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-qualities h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.qualities-list {
    max-width: 800px;
    margin: 0 auto;
}

.qualities-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    line-height: 1.7;
}

.qualities-list li:last-child {
    border-bottom: none;
}

/* Milestones Section */
.milestones {
    background-color: #f9fafb;
}

.timeline {
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        flex: 0 0 auto;
    }
}

/* Approach Section */
.approach {
    background-color: #ffffff;
}

.approach-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #4b5563;
    line-height: 1.8;
}

.approach-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.approach-point {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.approach-point h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.approach-point p {
    color: #6b7280;
    line-height: 1.7;
}

/* Impact Section */
.impact {
    background-color: #f9fafb;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.impact-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.impact-item h3 {
    font-size: 32px;
    color: #7c3aed;
    margin-bottom: 10px;
}

.impact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.impact-text {
    max-width: 900px;
    margin: 40px auto 0;
}

.impact-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Page */
.services {
    background-color: #ffffff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #4b5563;
    line-height: 1.8;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #7c3aed;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    font-size: 24px;
    color: #1f2937;
    margin: 0;
    text-align: left;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #7c3aed;
}

.service-description {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-item {
    padding: 8px 16px;
    background-color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    color: #6b7280;
}

/* Packages Section */
.packages {
    background-color: #f9fafb;
}

.packages-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.package-card.featured {
    border: 3px solid #7c3aed;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background-color: #7c3aed;
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 10px;
}

.package-savings {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 30px;
}

.package-features {
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.package-features li:last-child {
    border-bottom: none;
}

@media (max-width: 968px) {
    .packages-grid {
        flex-direction: column;
    }

    .package-card.featured {
        transform: none;
    }
}

/* Service Benefits */
.service-benefits {
    background-color: #ffffff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.benefit-item h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Comparison Section */
.comparison {
    background-color: #f9fafb;
}

.comparison-table {
    max-width: 900px;
    margin: 40px auto 0;
}

.comparison-row {
    display: flex;
    gap: 30px;
    padding: 25px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comparison-label {
    flex: 0 0 250px;
    color: #1f2937;
}

.comparison-value {
    flex: 1;
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .comparison-row {
        flex-direction: column;
        gap: 15px;
    }

    .comparison-label {
        flex: 0 0 auto;
    }
}

/* Contact Page */
.contact-info {
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 2;
}

.location-card {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.location-card h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
}

.location-info p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-directions {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
}

.location-directions h4 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 10px;
}

.location-directions p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-sidebar {
    flex: 1;
}

.info-box {
    padding: 25px;
    background-color: #f9fafb;
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-box h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.info-box p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 10px;
}

.info-box strong {
    color: #7c3aed;
}

@media (max-width: 968px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* Company Info */
.company-info {
    background-color: #f9fafb;
}

.company-details {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
}

.company-details p {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.company-details p:last-child {
    border-bottom: none;
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #4b5563;
    line-height: 1.8;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thank-you-info {
    margin-top: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
}

.thank-you-info p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thank-you-info strong {
    color: #7c3aed;
    font-size: 18px;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: center;
}

.legal-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: left;
}

.legal-section h3 {
    font-size: 22px;
    color: #1f2937;
    margin: 25px 0 15px;
}

.legal-section h4 {
    font-size: 18px;
    color: #1f2937;
    margin: 20px 0 10px;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #7c3aed;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #6d28d9;
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d1d5db;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #7c3aed;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

@media (max-width: 968px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    padding: 10px 24px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 25px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #4b5563;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-buttons .btn {
    flex: 1;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}