/* Terms and Conditions Page Styles */
.terms-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.terms-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.terms-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #3457D5;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

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

.terms-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

.terms-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.terms-footer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-container {
        padding: 25px 20px;
    }

    .terms-title {
        font-size: 24px;
    }

    .terms-section h2 {
        font-size: 18px;
    }

    .terms-section p,
    .terms-section li,
    .terms-footer p {
        font-size: 15px;
    }
}