/* Terms Page Specific Styles */

.page-bg-secondary {
    background-color: var(--secondary-color);
    min-height: 100vh;
    padding: 1rem;
}

.terms-container {
    max-width: 900px;
    margin: 4rem auto 2rem;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(120, 80, 200, 0.07);
}

.terms-header {
    text-align: center;
    margin-bottom: 2rem;
}

.terms-header h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
}

.terms-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.terms-list {
    color: var(--text-primary);
}

.terms-list h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.terms-list p {
    margin: 1rem 0;
    line-height: 1.6;
}

.terms-list ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    position: relative;
}

.terms-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.terms-list a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

@media (max-width: 768px) {
    .terms-container {
        margin: 3rem auto 1.5rem;
        padding: 1.5rem;
    }
    
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-list h2 {
        font-size: 1.3rem;
    }
    
    .terms-footer {
        margin-top: 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-bg-secondary {
        padding: 0.5rem;
    }
    
    .terms-container {
        margin: 2rem auto 1rem;
        padding: 1rem;
    }
    
    .terms-header h1 {
        font-size: 1.5rem;
    }
    
    .terms-intro {
        font-size: 0.95rem;
    }
    
    .terms-list h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .terms-list li {
        margin-bottom: 0.5rem;
    }
    
    .terms-footer {
        margin-top: 1.5rem;
        font-size: 1rem;
    }
} 