/* General styles for terms and conditions page */
.terms-hero {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

.terms-hero h1 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 15px;
}

.terms-hero p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.terms-content {
    padding: 40px 0;
    line-height: 1.7;
    color: #444;
}

.terms-content h2 {
    font-size: 2em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.terms-content p {
    margin-bottom: 20px;
}

.terms-content .mandatory-paragraph {
    background-color: #eef;
    border-left: 5px solid #5a67d8;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.2em;
    }

    .terms-hero p {
        font-size: 1em;
    }

    .terms-content h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .terms-hero {
        padding: 40px 0;
    }

    .terms-hero h1 {
        font-size: 1.8em;
    }

    .terms-content h2 {
        font-size: 1.5em;
    }

    .terms-content .mandatory-paragraph {
        padding: 10px 15px;
    }
}
