/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #F8F8F8; /* Light background for high contrast */
    color: #0A1931; /* Dark text for high contrast */
}

.page-terms-conditions__hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0A1931; /* Dark background for hero */
    color: #FFD700; /* Gold text on dark background */
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for main title on dark background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    color: #FFFFFF; /* White for subtitle on dark background */
}

.page-terms-conditions__content-section {
    padding: 60px 0;
}

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

.page-terms-conditions__heading {
    font-size: 2em;
    color: #0A1931; /* Dark blue for headings on light background */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-terms-conditions p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #1a2a42; /* Slightly lighter dark blue for body text */
}

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

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

.page-terms-conditions__list li ul {
    margin-top: 5px;
    padding-left: 20px;
    list-style-type: circle;
}

.page-terms-conditions__link {
    color: #FFD700; /* Gold for links on dark blue text */
    text-decoration: underline;
    font-weight: bold;
}

.page-terms-conditions__link:hover {
    color: #e6c200; /* Slightly darker gold on hover */
    text-decoration: none;
}

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

.page-terms-conditions__image--left {
    float: left;
    margin-right: 30px;
    width: 300px;
}

.page-terms-conditions__image--right {
    float: right;
    margin-left: 30px;
    width: 300px;
}

.page-terms-conditions__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
}

.page-terms-conditions__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #0A1931; /* Dark blue background for CTA */
    border-radius: 10px;
    color: #FFFFFF; /* White text on dark blue */
}

.page-terms-conditions__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* Clear floats */
.page-terms-conditions__content-section::after {
    content: "";
    display: table;
    clear: both;
}

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

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

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

    .page-terms-conditions__image--left,
    .page-terms-conditions__image--right,
    .page-terms-conditions__image--center {
        float: none;
        margin: 20px auto;
        width: 80%;
    }

    .page-terms-conditions__hero {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.5em;
    }

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

    .page-terms-conditions__hero {
        height: 200px;
    }

    .page-terms-conditions__content-section {
        padding: 30px 0;
    }

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