/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F0F0F0; /* Light gray for main text on dark background */
    background-color: #0A2463; /* Primary dark blue background */
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1c3d7a 100%); /* Gradient from primary to a slightly lighter blue */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #E3B23C; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.4em;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto;
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #12306F; /* Slightly lighter dark blue for content sections */
}

.page-terms-conditions__article {
    background-color: #0A2463; /* Primary dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #E3B23C; /* Accent color for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E3B23C;
    padding-bottom: 10px;
}

.page-terms-conditions__article p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #F0F0F0; /* Light gray for paragraph text */
}

.page-terms-conditions__highlight {
    color: #E3B23C; /* Accent color for highlighted keywords */
    font-weight: bold;
}

.page-terms-conditions__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #F0F0F0;
}

.page-terms-conditions__list li {
    font-size: 1.1em;
    margin-bottom: 8px;
}

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

.page-terms-conditions__image--inline {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-banner {
    background: linear-gradient(90deg, #E3B23C 0%, #F5D78B 100%); /* Gradient for CTA banner */
    color: #0A2463; /* Dark blue text on bright background */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0A2463;
}

.page-terms-conditions__cta-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #333;
}

.page-terms-conditions__image--cta {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: auto;
    opacity: 0.3;
    z-index: 0;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
    z-index: 1; /* Ensure button is above image */
    position: relative;
}

.page-terms-conditions__btn--primary {
    background-color: #E3B23C; /* Accent color for primary buttons */
    color: #0A2463; /* Dark blue text on accent background */
}

.page-terms-conditions__btn--primary:hover {
    background-color: #F5D78B; /* Lighter accent on hover */
    transform: translateY(-2px);
}

.page-terms-conditions__btn--secondary {
    background-color: #0A2463; /* Primary dark blue for secondary buttons */
    color: #E3B23C; /* Accent color text on dark background */
    border: 2px solid #E3B23C;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #1c3d7a; /* Slightly lighter dark blue on hover */
    transform: translateY(-2px);
}

.page-terms-conditions__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

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

    .page-terms-conditions__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-terms-conditions__article {
        padding: 25px;
    }

    .page-terms-conditions__article p,
    .page-terms-conditions__list li {
        font-size: 1em;
    }

    .page-terms-conditions__cta-title {
        font-size: 2em;
    }

    .page-terms-conditions__cta-description {
        font-size: 1.1em;
    }

    .page-terms-conditions__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

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

    .page-terms-conditions__hero-title {
        font-size: 2em;
    }

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

    .page-terms-conditions__article {
        padding: 15px;
    }

    .page-terms-conditions__cta-banner {
        padding: 30px 20px;
    }

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

    .page-terms-conditions__btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .page-terms-conditions__image--cta {
        display: none; /* Hide CTA image on small screens */
    }
}