/* Extracted from terms-of-service.html inline style block */
        .legal-page {
            padding-top: 140px;
        }

        .legal-sidebar {
            position: sticky;
            top: 160px;
            max-height: calc(100vh - 180px);
            overflow-y: auto;
        }

        .legal-nav {
            background: var(--gc-off-white);
            border-radius: 12px;
            padding: 24px;
        }

        .legal-nav h4 {
            color: var(--gc-green-primary);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--gc-gold);
            padding-bottom: 8px;
        }

        .legal-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .legal-nav li {
            margin-bottom: 8px;
        }

        .legal-nav a {
            color: var(--gc-charcoal);
            text-decoration: none;
            font-size: 14px;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .legal-nav a:hover,
        .legal-nav a.active {
            background: var(--gc-green-primary);
            color: white;
        }

        .legal-content h1 {
            color: var(--gc-green-primary);
            font-family: "Playfair Display", serif;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .legal-content h2 {
            color: var(--gc-green-primary);
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--gc-border);
        }

        .legal-content h3 {
            color: var(--gc-green-dark);
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .legal-content p {
            line-height: 1.7;
            margin-bottom: 16px;
            color: var(--gc-charcoal);
        }

        .legal-content ul, .legal-content ol {
            margin-bottom: 20px;
            padding-left: 24px;
        }

        .legal-content li {
            margin-bottom: 8px;
            line-height: 1.6;
            color: var(--gc-charcoal);
        }

        .effective-date {
            background: var(--gc-off-white);
            border-left: 4px solid var(--gc-gold);
            padding: 16px 20px;
            margin-bottom: 32px;
            border-radius: 0 8px 8px 0;
        }

        .contact-info {
            background: var(--gc-green-primary);
            color: white;
            padding: 24px;
            border-radius: 12px;
            margin-top: 40px;
        }

        .contact-info h3 {
            color: white;
            margin-bottom: 16px;
        }

        .contact-info a {
            color: var(--gc-gold);
            text-decoration: none;
        }

        .contact-info a:hover {
            color: var(--gc-gold-light);
            text-decoration: underline;
        }

        .important-notice {
            background: #fff3cd;
            border: 1px solid #ffecb5;
            border-radius: 8px;
            padding: 20px;
            margin: 24px 0;
        }

        .important-notice h4 {
            color: #856404;
            margin-bottom: 12px;
        }

        .important-notice p {
            color: #856404;
            margin-bottom: 0;
        }

        @media (max-width: 991.98px) {
            .legal-page {
                padding-top: 120px;
            }

            .legal-sidebar {
                position: static;
                margin-bottom: 32px;
            }

            .mobile-nav-toggle {
                display: block;
                background: var(--gc-green-primary);
                color: white;
                border: none;
                padding: 12px 20px;
                border-radius: 8px;
                width: 100%;
                text-align: left;
                font-weight: 600;
            }

            .mobile-nav-toggle:hover {
                background: var(--gc-green-dark);
            }

            .mobile-nav-toggle i {
                float: right;
                transition: transform 0.3s ease;
            }

            .mobile-nav-toggle[aria-expanded="true"] i {
                transform: rotate(180deg);
            }

            .legal-nav {
                margin-top: 16px;
            }
        }

        @media (min-width: 992px) {
            .mobile-nav-toggle {
                display: none;
            }
        }
