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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #16a34a;
    --secondary-light: #dcfce7;
    --accent: #d97706;
    --accent-light: #fef3c7;
    --purple: #4f46e5;
    --purple-light: #e0e7ff;
    --pink: #db2777;
    --pink-light: #fce7f3;
    --teal: #0d9488;
    --teal-light: #ccfbf1;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--bg);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--bg-alt);
    border-color: var(--text-light);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

.logo:hover {
    color: var(--text);
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 16px;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

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

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

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        gap: 32px;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-light) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 100px 0 120px;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-visual {
        flex-shrink: 0;
    }
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-light) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-legal {
    padding: 40px 0;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    margin-bottom: 24px;
}

.philosophy-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--primary);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 48px;
}

.services-preview .section-tag {
    display: block;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .services-cards {
        flex-direction: row;
    }

    .service-card {
        flex: 1;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.process-section .section-tag {
    display: block;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (min-width: 1024px) {
    .process-step {
        flex: 1 1 calc(25% - 24px);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-section .section-tag {
    display: block;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 1.0625rem;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

/* Insights Section */
.insights-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.insights-content {
    max-width: 800px;
    margin: 0 auto;
}

.insights-content h2 {
    margin-bottom: 32px;
}

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

.insight-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
}

.insight-icon {
    flex-shrink: 0;
}

.insight-item p {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-section .section-tag {
    display: block;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    background: var(--bg);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    gap: 16px;
}

.faq-question:hover {
    background: var(--bg-alt);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.values-section .section-tag {
    display: block;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.cta-alt {
    background: var(--bg-alt);
}

.cta-alt .cta-content h2 {
    color: var(--text);
}

.cta-alt .cta-content p {
    color: var(--text-light);
}

.cta-alt .btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-dark);
    color: #fff;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 2;
    }

    .footer-links {
        flex: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 12px;
}

.cookie-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9375rem;
}

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

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

.cookie-modal-content {
    background: var(--bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px 8px;
}

.cookie-modal-close:hover {
    color: var(--text);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    margin-bottom: 4px;
}

.cookie-option-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle.disabled .toggle-slider {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cookie-modal-footer .btn {
    width: 100%;
}

/* About Page */
.story-section {
    padding: 80px 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.story-text {
    max-width: 600px;
}

.story-text h2 {
    margin-bottom: 24px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .story-visual {
        flex-shrink: 0;
    }
}

.mission-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card {
    padding: 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.mission-icon {
    margin-bottom: 24px;
}

.mission-card h3 {
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .mission-grid {
        flex-direction: row;
    }

    .mission-card {
        flex: 1;
    }
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.team-section .section-tag {
    display: block;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-card {
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.team-avatar {
    margin-bottom: 20px;
}

.team-card h3 {
    margin-bottom: 8px;
}

.team-role {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
    }

    .team-card {
        flex: 1;
    }
}

.milestones-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.milestones-section .section-tag {
    display: block;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }

    .timeline-year {
        flex-shrink: 0;
        width: 80px;
    }
}

.approach-section {
    padding: 80px 0;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.approach-section .section-tag {
    display: block;
    text-align: center;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-item {
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.approach-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.approach-item h3 {
    margin-bottom: 12px;
}

.approach-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 1 1 calc(50% - 12px);
    }
}

.trust-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
}

.trust-item svg {
    margin-bottom: 16px;
}

.trust-item h3 {
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }
}

/* Services Page */
.services-main {
    padding: 80px 0;
}

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

.service-detail-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: var(--bg-alt);
}

.service-icon-large {
    flex-shrink: 0;
}

.service-title-block h2 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.service-body {
    padding: 32px;
}

.service-body > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-body h4 {
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    color: var(--text-light);
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--secondary-light);
    border-radius: 50%;
}

.service-features li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 6px;
    height: 4px;
    border-left: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: rotate(-45deg);
}

@media (min-width: 768px) {
    .service-header {
        flex-direction: row;
        align-items: center;
    }
}

.services-comparison {
    padding: 80px 0;
    background: var(--bg-alt);
}

.services-comparison h2 {
    text-align: center;
    margin-bottom: 48px;
}

.services-comparison .section-tag {
    display: block;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table th:first-child {
    background: var(--bg-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--bg-alt);
}

.benefits-section {
    padding: 80px 0;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-section .section-tag {
    display: block;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 12px);
    }
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-link {
    font-weight: 600;
    word-break: break-word;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.company-info-block h2 {
    margin-bottom: 16px;
}

.company-info-block p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.response-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-top: 24px;
}

.response-info span {
    font-size: 0.9375rem;
    color: var(--text);
}

.directions-block h3 {
    margin-bottom: 16px;
}

.directions-block p {
    color: var(--text-light);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 1;
    }
}

.company-details-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.company-legal-info h2 {
    margin-bottom: 24px;
}

.legal-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
}

.legal-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.legal-value {
    font-weight: 600;
}

@media (min-width: 768px) {
    .legal-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .legal-item {
        flex: 1 1 calc(50% - 8px);
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
}

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

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-content h1 {
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
}

.step-item p {
    color: var(--text-light);
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.meanwhile-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.meanwhile-section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.meanwhile-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.meanwhile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.meanwhile-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.meanwhile-icon {
    margin-bottom: 16px;
}

.meanwhile-card h3 {
    margin-bottom: 8px;
    color: var(--text);
}

.meanwhile-card p {
    color: var(--text-light);
}

@media (min-width: 600px) {
    .meanwhile-grid {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }
}

/* Legal Pages */
.legal-content {
    padding: 60px 0 80px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-text ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    list-style: disc;
}

.legal-text .contact-list {
    list-style: none;
    padding-left: 0;
}

.legal-text .contact-list li {
    list-style: none;
}

.info-box {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin: 24px 0;
}

.info-box p {
    margin-bottom: 0;
}

.rights-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.right-item {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.right-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.right-item p {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .rights-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .right-item {
        flex: 1 1 calc(50% - 12px);
    }
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.legal-table th {
    background: var(--bg-alt);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
}

/* Button in legal pages */
.legal-text .btn {
    margin: 24px 0;
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
