:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --border-color: #ddd;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.terms-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.terms-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.terms-header p {
    font-size: 16px;
    color: var(--text-light);
}

.terms-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.terms-article {
    margin-bottom: 30px;
}

.terms-article h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.terms-article p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.terms-article ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.terms-article li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms-acceptance {
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f7fa;
    border-radius: var(--border-radius);
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 28px;
    }
    
    .terms-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-article h2 {
        font-size: 20px;
    }
}