:root {
    --primary-color: #E8505B;
    --primary-dark: #d43f4a;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

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

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-list {
    display: none;
    list-style: none;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
}

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

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

@media (min-width: 768px) {
    .nav-list {
        display: flex;
    }

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

@media (max-width: 767px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        display: block;
        padding: 0.75rem 1.5rem;
    }
}

.hero {
    background: linear-gradient(135deg, #E8505B 0%, #d43f4a 100%);
    color: white;
    padding: 4rem 0;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

    .hero h1 {
        font-size: 3rem;
    }
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.philosophy {
    background: var(--bg-light);
}

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

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

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.stats {
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

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

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

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

    .stat-item {
        flex: 1;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.process {
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

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

    .process-step {
        flex: 1;
    }
}

.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

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

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

    .testimonial {
        flex: 1;
    }
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-item {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-color);
}

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

.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: background 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

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

.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: white;
}

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

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

    .footer-section {
        flex: 1;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.page-hero {
    background: var(--bg-light);
    padding: 4rem 0;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.story {
    padding: 4rem 0;
}

.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.content-column p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

    .content-column {
        flex: 1;
    }
}

.values {
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

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

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

.team-intro {
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-info p {
    color: var(--text-light);
    line-height: 1.7;
}

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    min-width: 80px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

.certifications {
    background: var(--bg-light);
}

.cert-content {
    margin-bottom: 2rem;
}

.cert-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-item {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    border-left: 4px solid var(--primary-color);
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.reason-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

    .reason-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

.service-detail {
    margin-bottom: 4rem;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-header {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-direction: column;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.detail-item {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-content {
    margin-top: 2rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-content ul {
    list-style: none;
    padding-left: 0;
}

.service-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.comparison {
    background: var(--bg-light);
}

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

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.comparison-header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 500;
}

.process-section {
    background: var(--bg-light);
}

.steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-h {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-h h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

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

    .step-h {
        flex: 1;
    }
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-block {
    margin-bottom: 3rem;
}

.location-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-group strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.detail-group p,
.detail-group a {
    color: var(--text-light);
    line-height: 1.7;
}

.directions {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.directions h4 {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.directions p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-box p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-box ul {
    list-style: none;
    padding-left: 0;
}

.contact-box ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-light);
}

.contact-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-box .btn {
    margin-top: 1rem;
}

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }
}

.company-info-section {
    background: var(--bg-light);
}

.company-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.hours-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hours-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hours-list {
    list-style: none;
    padding-left: 0;
}

.hours-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

    .hours-block {
        flex: 1;
    }
}

.thank-you-hero {
    background: var(--bg-light);
    padding: 6rem 0;
}

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

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

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.thank-you-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.thank-you-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

    .step-card {
        flex: 1;
    }
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.link-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.link-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.link-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

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

    .link-card {
        flex: 1;
    }
}

.legal-page {
    padding: 4rem 0;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 767px) {
    .cookie-table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}