    /* Terms Specific Styles */
    .terms-container {
        max-width: 1000px;
        margin: 2rem auto;
        padding: 2rem;
        background: var(--white);
        border-radius: 8px;
        box-shadow: var(--card-shadow);
    }

    .terms-container h1 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 2rem;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 0.5rem;
    }

    .terms-section {
        margin-bottom: 2.5rem;
    }

    .terms-section h2 {
        color: var(--secondary-color);
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 0.5rem;
        margin: 1.5rem 0 1rem;
        font-size: 1.5rem;
    }

    .terms-section h3 {
        color: var(--accent-color);
        margin: 1.2rem 0 0.8rem;
        font-size: 1.2rem;
    }

    .terms-item {
        margin-bottom: 1.2rem;
    }

    .terms-item p, .terms-item li {
        color: var(--text-color);
        line-height: 1.6;
    }

    ul {
        padding-left: 1.5rem;
    }

    li {
        margin-bottom: 0.5rem;
    }

    .contact-info {
        margin-top: 3rem;
        padding: 1.5rem;
        background: rgba(255, 107, 9, 0.05);
        border-left: 4px solid var(--primary-color);
        border-radius: 6px;
    }

    .beta-notice {
        background-color: #FFF3E0;
        padding: 1rem;
        border-left: 4px solid #FFA000;
        margin-bottom: 2rem;
        border-radius: 4px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .terms-container {
            padding: 1.5rem;
            margin: 1rem;
        }
        
        .terms-container h1 {
            font-size: 1.6rem;
        }
        
        .terms-section h2 {
            font-size: 1.3rem;
        }
    }