        :root {
            --primary-color: #1a1a1a;
            --primary-hover: #000000;
            --secondary-color: #4a5568;
            --border-color: #d1d5db;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Breadcrumb */
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .breadcrumb-item a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }

        .breadcrumb-item.active {
            color: #0f172a;
            font-weight: 500;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        /* Hero Section */
        .terms-hero {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 0;
        }

        .terms-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .terms-hero .lead {
            font-size: 1.125rem;
            opacity: 0.95;
            margin-bottom: 0.5rem;
        }

        /* Sidebar Cards */
        .sidebar-card {
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .sidebar-card-header {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .sidebar-card-header svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .sidebar-card-header h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
        }

        .sidebar-card-body {
            padding: 1.25rem;
        }

        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-links li {
            margin-bottom: 0.75rem;
        }

        .sidebar-links li:last-child {
            margin-bottom: 0;
        }

        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.875rem;
            padding: 0.5rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }

        .sidebar-links a:hover {
            color: var(--primary-color);
            background: #f8fafc;
            transform: translateX(4px);
        }

        .sidebar-links svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .sidebar-cta {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            padding: 1.5rem;
        }

        .sidebar-cta h3 {
            color: white;
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .sidebar-cta p {
            font-size: 0.875rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        /* Terms Notice */
        .terms-notice {
            background: #fef3c7;
            border: 2px solid #fcd34d;
            border-radius: var(--radius-md);
            padding: 1.25rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .terms-notice svg {
            width: 24px;
            height: 24px;
            color: #92400e;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .terms-notice strong {
            color: #92400e;
        }

        /* Terms Sections */
        .terms-section {
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            padding: 2rem;
            margin-bottom: 1.5rem;
            scroll-margin-top: 100px;
        }

        .terms-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .terms-section p {
            font-size: 1rem;
            line-height: 1.7;
            color: #334155;
            margin-bottom: 1rem;
        }

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

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

        .terms-section a:hover {
            color: var(--primary-hover);
        }

        .address-box {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 1.25rem;
            margin-top: 1rem;
            line-height: 1.7;
        }

        .address-box a {
            color: var(--primary-color);
        }

        /* Terms Footer */
        .terms-footer {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }

        .terms-footer p {
            font-size: 0.938rem;
            color: var(--secondary-color);
            margin-bottom: 0;
        }

        .terms-footer a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .terms-footer a:hover {
            color: var(--primary-hover);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .terms-hero h1 {
                font-size: 2rem;
            }

            .terms-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 767px) {
            .terms-hero {
                padding: 2rem 0;
            }

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

            .terms-section {
                padding: 1rem;
            }

            .terms-section h2 {
                font-size: 1.25rem;
            }
        }
