        /* Terms Page Specific Styles */
        .terms-page {
            min-height: 100vh;
            background: white;
        }

        .terms-hero {
            padding: 30px 0 60px;
            background: var(--color-off-white);
        }

        .terms-hero-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .terms-hero-text {
            flex: 0 1 500px;
        }

        .terms-hero .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-gold);
            margin-bottom: 16px;
        }

        .terms-hero h1 {
            font-size: 2.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--color-black);
            line-height: 1.2;
        }

        .terms-hero p {
            font-size: 1.15rem;
            color: var(--color-dark-gray);
            line-height: 1.7;
        }

        .terms-hero-graphic {
            flex: 0 1 450px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-illustration {
            width: 100%;
            max-width: 450px;
            height: auto;
        }

        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px 80px;
        }

        .terms-section {
            margin-bottom: 50px;
        }

        .terms-section-header {
            margin-bottom: 24px;
        }

        .terms-section-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-gold);
            margin-bottom: 8px;
        }

        .terms-section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--color-black);
        }

        .terms-content {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 0;
            border: 1px solid var(--color-gray);
            overflow: hidden;
        }

        .terms-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-black);
            margin: 0;
            margin-top: 8px;
            padding: 14px 32px;
            background: var(--color-off-white);
            border-bottom: 1px solid var(--color-gray);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .terms-content h3:first-child {
            margin-top: 0;
        }

        .terms-content {
            counter-reset: section-counter;
        }

        .terms-content h3::before {
            counter-increment: section-counter;
            content: counter(section-counter);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: white;
            color: var(--color-dark-gray);
            border: 2px solid var(--color-gray);
            border-radius: 50%;
            font-size: 0.85rem;
            font-weight: 600;
            flex-shrink: 0;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .terms-content h3.active::before {
            background: var(--color-gold);
            color: white;
            border-color: var(--color-gold);
        }

        .section-body {
            border-bottom: 1px solid var(--color-gray);
        }

        .section-body:last-child {
            border-bottom: none;
        }

        .terms-content p {
            font-size: 0.95rem;
            color: var(--color-dark-gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .terms-content p:last-child {
            margin-bottom: 0;
        }

        .terms-content .subsection-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-black);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 20px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px dashed var(--color-gray);
        }

        .terms-content .subsection-title:first-child {
            margin-top: 0;
        }

        .terms-content ul {
            margin: 12px 0 20px;
            padding-left: 0;
            list-style: none;
        }

        .terms-content li {
            font-size: 0.95rem;
            color: var(--color-dark-gray);
            line-height: 1.7;
            margin-bottom: 10px;
            padding-left: 24px;
            position: relative;
        }

        .terms-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--color-gold);
            border-radius: 50%;
        }

        .terms-content li:last-child {
            margin-bottom: 0;
        }

        .terms-content a {
            color: var(--color-gold);
            text-decoration: none;
            font-weight: 600;
        }

        .terms-content a:hover {
            text-decoration: underline;
        }

        .terms-content a.analytics-link:hover {
            color: var(--color-gold) !important;
            text-decoration: none;
        }

        .terms-content .highlight-box {
            background: rgba(255, 149, 5, 0.08);
            border-left: 3px solid var(--color-gold);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 16px 0;
        }

        .terms-content .highlight-box p {
            margin: 0;
            font-weight: 500;
            color: var(--color-black);
        }

        .contact-box {
            background: var(--color-off-white);
            border-radius: 12px;
            padding: 20px 24px;
            text-align: center;
        }

        .contact-box p {
            margin: 0;
        }

        .terms-last-updated {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-gold);
            background: rgba(255, 149, 5, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            margin-top: 16px;
            border: 1px solid rgba(255, 149, 5, 0.3);
        }

        .terms-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }

        .terms-tab {
            padding: 12px 24px;
            border-radius: var(--radius-xl);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 2px solid var(--color-gray);
            background: var(--color-white);
            color: var(--color-dark-gray);
        }

        .terms-tab:hover {
            border-color: var(--color-gold);
            color: var(--color-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .terms-tab.active {
            background: var(--color-gold);
            border-color: var(--color-gold);
            color: white;
        }

        .terms-panel {
            display: none;
        }

        .terms-panel.active {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .terms-hero {
                padding: 30px 0 40px;
            }

            .terms-hero h1 {
                font-size: 1.8rem;
                margin-bottom: 14px;
            }

            .terms-hero p {
                font-size: 1rem;
            }

            .terms-hero-content {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .terms-hero-graphic {
                order: -1;
                flex: 0 0 auto;
            }

            .terms-hero-text {
                flex: 0 1 auto;
            }

            .hero-illustration {
                max-width: 380px;
            }

            .terms-content h3 {
                padding: 12px 20px;
                font-size: 1rem;
            }

            .section-body {
                padding: 20px;
            }

            .terms-tabs {
                flex-direction: column;
            }

            .terms-tab {
                text-align: center;
            }

            .highlight-box {
                padding: 14px 16px;
            }

            .contact-box {
                padding: 16px 20px;
            }
        }

        /* Accordion Styles */
        .terms-content h3 {
            cursor: pointer;
            user-select: none;
            transition: background 0.2s ease;
        }

        .terms-content h3:hover {
            background: #f5f5f5;
        }

        .terms-content h3::after {
            content: '+';
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--color-gold);
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .terms-content h3.active::after {
            content: '−';
        }

        /* Smooth accordion animation using grid */
        .section-body {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.4s ease-out;
        }

        .section-body > .section-inner {
            overflow: hidden;
        }

        .section-body.active {
            grid-template-rows: 1fr;
        }

        .section-inner {
            padding: 4px 32px;
        }

        .section-body.active .section-inner {
            padding: 16px 32px 24px;
        }

        /* Toggle button in tabs row */
        .terms-tabs {
            align-items: center;
        }

        .toggle-all-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 2px solid var(--color-gray);
            background: var(--color-white);
            color: var(--color-dark-gray);
            margin-right: 8px;
            padding: 0;
        }

        .toggle-all-btn:hover {
            border-color: var(--color-gold);
            color: var(--color-gold);
        }

        .toggle-all-btn .chevron {
            transition: transform 0.3s ease;
        }

        /* Expanded state - orange background, white arrow pointing up */
        .toggle-all-btn.expanded {
            background: var(--color-gold);
            border-color: var(--color-gold);
            color: white;
        }

        .toggle-all-btn.expanded .chevron {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .section-body.active .section-inner {
                padding: 20px;
            }

            .terms-tabs {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .terms-tab {
                width: 100%;
                max-width: 280px;
            }

            .toggle-all-btn {
                order: 3;
                margin-right: 0;
                margin-top: 4px;
            }
        }

        /* Service Tables */
        .service-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 0.9rem;
        }

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

        .service-table th {
            background: var(--color-off-white);
            font-weight: 600;
            color: var(--color-black);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-table td {
            color: var(--color-dark-gray);
        }

        .service-table td:first-child {
            font-weight: 600;
            color: var(--color-black);
        }

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

        .service-table tr:hover td {
            background: rgba(255, 149, 5, 0.04);
        }

        .table-label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--color-gold);
            margin-top: 20px;
            margin-bottom: 8px;
        }

        .table-label:first-of-type {
            margin-top: 0;
        }

        @media (max-width: 768px) {
            .service-table {
                font-size: 0.85rem;
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .service-table thead,
            .service-table tbody {
                display: table;
                width: 100%;
            }

            .service-table th,
            .service-table td {
                padding: 10px 12px;
            }

            .section-inner {
                padding: 4px 16px;
            }

            .section-body.active .section-inner {
                padding: 12px 16px 20px;
            }
        }

        /* Zone Map Styles */
        .zone-map-container {
            text-align: center;
            margin: 16px 0;
            display: flex;
            justify-content: center;
        }

        .zone-map-container img {
            max-width: 720px;
            width: 100%;
            height: auto;
        }

        /* Zone Table — dark header style (matches order portal) */
        .zone-table-wrapper {
            border-radius: 12px;
            overflow: hidden;
            margin: 16px 0;
        }

        .zone-table-header {
            padding: 12px 16px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--color-dark-gray);
            border-bottom: 1px solid var(--color-gray);
        }

        .zone-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .zone-table th,
        .zone-table td {
            padding: 12px 16px;
            text-align: left;
        }

        .zone-table th {
            font-weight: 600;
            color: white;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            background: #1a1a1a;
        }

        .zone-table tbody tr {
            border-bottom: 1px solid var(--color-gray);
        }

        .zone-table tbody tr:last-child {
            border-bottom: none;
        }

        .zone-table td {
            color: var(--color-dark-gray);
        }

        .zone-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            color: white;
        }

        .zone-badge.zone-1 { background: #6b7ff5; }
        .zone-badge.zone-2 { background: #7dd4c8; }
        .zone-badge.zone-3 { background: #8ed98d; }
        .zone-badge.zone-4 { background: #a8e6a8; }
        .zone-badge.zone-5 { background: #b8e8b8; }
        .zone-badge.zone-6 { background: #d4e8c8; }
        .zone-badge.zone-7 { background: #e8d4a8; }
        .zone-badge.zone-8 { background: #f5b87c; }

        @media (max-width: 480px) {
            .terms-hero {
                padding: 30px 0 30px;
            }

            .terms-hero h1 {
                font-size: 1.5rem;
            }

            .terms-hero-content {
                gap: 16px;
            }

            .hero-illustration {
                max-width: 260px;
            }

            .terms-content h3 {
                padding: 12px 16px;
            }
        }
