/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A2B5B, #3A4C7E);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}

.page-terms-conditions__highlight {
    color: #FFD700;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.page-terms-conditions__section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.page-terms-conditions__section:last-of-type {
    border-bottom: none;
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #1A2B5B;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    font-weight: 700;
}

.page-terms-conditions__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #555;
}

.page-terms-conditions__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-terms-conditions__list li {
    margin-bottom: 10px;
    color: #555;
}

.page-terms-conditions__strong {
    color: #1A2B5B;
}

.page-terms-conditions__link {
    color: #1A2B5B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-terms-conditions__brand {
    font-weight: bold;
    color: #1A2B5B;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B5B;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #e6c200;
    color: #0d1a33;
}

.page-terms-conditions__cta {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1em;
    color: #1A2B5B;
}

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

.page-terms-conditions__image--small {
    max-width: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.2em;
    }

    .page-terms-conditions__subtitle {
        font-size: 1em;
    }

    .page-terms-conditions__heading {
        font-size: 1.8em;
    }

    .page-terms-conditions__paragraph, .page-terms-conditions__list li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 60px 0;
    }

    .page-terms-conditions__title {
        font-size: 1.8em;
    }

    .page-terms-conditions__heading {
        font-size: 1.5em;
    }

    .page-terms-conditions__button {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }
}