/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #003366, #1a4f80);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFCC00; /* Golden yellow for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Content sections */
.page-terms-conditions__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-terms-conditions__section--alt-bg {
    background-color: #e6f0f7; /* Lighter shade of primary blue for contrast */
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #003366; /* Deep blue for main titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00; /* Golden yellow underline */
    padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
    font-size: 1.5em;
    color: #003366; /* Deep blue for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__section p {
    margin-bottom: 15px;
    color: #333; /* Dark gray for readability */
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFCC00; /* Golden yellow for buttons */
    color: #003366; /* Deep blue text on golden button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    color: #001a33;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.7em;
    }
    .page-terms-conditions__sub-section-title {
        font-size: 1.3em;
    }
    .page-terms-conditions__hero {
        padding: 40px 15px;
    }
    .page-terms-conditions__container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}