/* Page-specific styles for Terms of Service */
        .terms-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding: 8rem 0 4rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .terms-hero h1 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: #FFFFFF !important;
        }

        .terms-hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7) !important;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Terms Content Section */
        .terms-content {
            padding: 4rem 0 6rem;
        }

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

        .terms-box {
            background: rgba(10, 10, 10, 0.95) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 16px;
            padding: 3rem;
            position: relative;
            z-index: 10;
            opacity: 1 !important;
            filter: none !important;
            mix-blend-mode: normal !important;
        }

        .terms-content h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem 0;
            color: #FFFFFF !important;
        }

        .terms-content h2:first-of-type {
            margin-top: 0;
        }

        .terms-content h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1.75rem 0 0.75rem 0;
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .terms-content h4 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem 0;
            color: rgba(255, 255, 255, 0.85) !important;
        }

        .terms-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.25rem;
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .terms-content ul {
            margin: 1rem 0 1.5rem 1.5rem;
        }

        .terms-content li {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .terms-content ol {
            margin: 1rem 0 1.5rem 1.5rem;
        }

        .terms-content ol li {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .terms-content strong {
            color: #FFFFFF !important;
            font-weight: 600;
        }

        .terms-content a {
            color: rgba(255, 255, 255, 0.8) !important;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s ease;
        }

        .terms-content a:hover {
            color: #FFFFFF !important;
        }

        .effective-date {
            background: rgba(255, 255, 255, 0.05) !important;
            padding: 1.25rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 3px solid rgba(255, 255, 255, 0.3) !important;
        }

        .effective-date p {
            margin: 0.35rem 0;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 0.9rem;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.05) !important;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

        .contact-info h3 {
            margin-top: 0;
            color: #FFFFFF !important;
        }

        .info-section {
            background: rgba(255, 255, 255, 0.03) !important;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
        }

        .info-section h3 {
            margin-top: 0;
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .info-section h4 {
            margin-top: 0;
            color: rgba(255, 255, 255, 0.85) !important;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }

            .terms-hero {
                padding: 7rem 0 3rem;
                min-height: auto;
            }

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

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

            .terms-content {
                padding: 2rem 0 4rem;
            }

            .terms-box {
                padding: 1.5rem;
                margin: 0 1rem;
                border-radius: 12px;
            }

            .terms-content h2 {
                font-size: 1.4rem;
            }

            .terms-content h3 {
                font-size: 1.1rem;
            }

            .terms-content p,
            .terms-content li {
                font-size: 0.95rem;
            }
        }
