/* Terms and Conditions Styles */
.terms-conditions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.terms-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.terms-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.terms-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.terms-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.terms-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-body ul {
    margin: 15px 0;
    padding-left: 30px;
}

.terms-body li {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 8px;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.terms-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.terms-footer p {
    font-style: italic;
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-conditions-section {
        padding: 40px 0;
    }
    
    .terms-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .terms-header h2 {
        font-size: 2rem;
    }
    
    .terms-body h3 {
        font-size: 1.3rem;
    }
    
    .terms-body h4 {
        font-size: 1.1rem;
    }
    
    .terms-body p,
    .terms-body li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 20px 15px;
    }
    
    .terms-header h2 {
        font-size: 1.8rem;
    }
    
    .terms-body ul {
        padding-left: 20px;
    }
}