/* Terms & Conditions Page Specific Styles for NPCB Coloring Books */

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

.terms-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--accent-font);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.terms-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-content h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.terms-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-container h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-content h2 {
        font-size: 1.3rem;
    }
}
