/* Terms and Conditions Page Styles */

.terms-section {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.terms-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-section h1 {
    color: #17adb8;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.terms-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #17adb8;
    padding-bottom: 10px;
}

.terms-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-section h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}