.legal-hero {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-accent) 100%);
            padding: 8rem 2rem 6rem;
            color: white;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            color: rgba(255, 255, 255, 0.9);
            margin-right: auto;
        }

        /* Override content.html's paragraph color for hero section */
        #ai_post #custom-container-cookies .legal-hero p {
            color: rgba(255, 255, 255, 0.9);
        }

        .last-updated {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            display: inline-block;
        }

        .legal-content {
            padding: 4rem 0;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .table-of-contents {
            position: sticky;
            top: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
        }

        .table-of-contents h4 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .table-of-contents ul {
            list-style: none;
            padding: 0;
        }

        .table-of-contents li {
            margin-bottom: 0.5rem;
        }

        .table-of-contents a {
            color: var(--brand-neutral);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .table-of-contents a:hover {
            color: var(--brand-primary);
        }

        .content-main {
            background: white;
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
        }

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

        .legal-section h2 {
            color: var(--brand-dark);
            border-bottom: 2px solid var(--brand-primary);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .legal-section h3 {
            color: var(--brand-dark);
            margin: 2rem 0 1rem;
        }

        .legal-section p {
            color: var(--brand-neutral);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .legal-section ul {
            color: var(--brand-neutral);
            margin-bottom: 1.5rem;
        }

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

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .cookie-type-card {
            background: var(--brand-light);
            padding: 1.5rem;
            border-radius: 0.5rem;
            border-left: 4px solid var(--brand-primary);
        }

        .cookie-type-card h4 {
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .cookie-type-card p {
            font-size: 0.875rem;
            margin: 0;
        }

        .cookie-table {
            margin: 2rem 0;
            overflow-x: auto;
        }

        .cookie-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .cookie-table th {
            background: var(--brand-primary);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .cookie-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            color: var(--brand-neutral);
        }

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

        .third-party-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .service-card {
            background: var(--brand-light);
            padding: 2rem;
            border-radius: 0.5rem;
            text-align: center;
        }

        .service-card h4 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            margin-bottom: 1rem;
        }

        .service-card a {
            color: var(--brand-primary);
            text-decoration: underline;
            font-size: 0.875rem;
        }

        .browser-instructions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .browser-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 0.5rem;
            text-align: center;
        }

        .browser-card h4 {
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .browser-card p {
            font-size: 0.875rem;
            margin: 0;
        }

        .consent-manager {
            text-align: center;
            margin: 2rem 0;
            padding: 2rem;
            background: var(--brand-light);
            border-radius: 0.5rem;
        }

        .important-notice {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 2rem;
            border-radius: 0.5rem;
            margin: 2rem 0;
        }

        .important-notice h4 {
            color: #b7950b;
            margin-bottom: 1rem;
        }

        .important-notice p {
            color: #7d6608;
            margin: 0;
        }

        .contact-info {
            background: var(--brand-light);
            padding: 2rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
        }

        .legal-section a {
            color: var(--brand-primary);
            text-decoration: underline;
        }

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

        @media (max-width: 768px) {
            .legal-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .table-of-contents {
                position: relative;
                top: 0;
            }

            .content-main {
                padding: 2rem 1.5rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .cookie-types {
                grid-template-columns: 1fr;
            }

            .third-party-services {
                grid-template-columns: 1fr;
            }

            .browser-instructions {
                grid-template-columns: 1fr;
            }

            .cookie-table {
                font-size: 0.875rem;
            }
        }
