/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for readability on light backgrounds */
    line-height: 1.6;
    background-color: #F8F8F8; /* Light background for main content */
}

.page-terms-conditions__hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
    background-color: #0A192F;
}

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

.page-terms-conditions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

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

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

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

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

.page-terms-conditions__article h2 {
    font-size: 2em;
    color: #0A192F; /* Dark blue for section headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-terms-conditions__article h3 {
    font-size: 1.5em;
    color: #0A192F;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #444444;
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444444;
}

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
}

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

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

.page-terms-conditions__cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #0A192F;
    border-radius: 10px;
    color: #FFFFFF;
}

.page-terms-conditions__cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A192F; /* Dark blue text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-terms-conditions .highlight {
    color: #0A192F; /* Dark blue for highlighted text */
    font-weight: bold;
    background-color: rgba(255, 215, 0, 0.2); /* Light gold background for highlight */
    padding: 2px 5px;
    border-radius: 3px;
}

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

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

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

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        height: 250px;
    }

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

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

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

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

    .page-terms-conditions__button {
        padding: 10px 20px;
    }
}