/* Terms and Conditions Page Styles */

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

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

.terms-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.terms-content {
    line-height: 1.8;
    color: #334155;
}

.terms-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2563EB;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 20px 15px;
    }
}

