/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for readability */
    background-color: #f8f8f8; /* Light background */
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

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

.page-terms-conditions__content {
    padding: 40px 0;
    background-color: #ffffff;
}

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

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

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

.page-terms-conditions__article ul,
.page-terms-conditions__article ol {
    margin-bottom: 15px;
    padding-left: 25px;
    color: #444444;
}

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

.page-terms-conditions__link-inline {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-terms-conditions__link-inline:hover {
    color: #FFCC00;
}

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

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

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

.page-terms-conditions__cta-section {
    background-color: #f0f7ff; /* Lighter blue background */
    border-left: 5px solid #003366;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border-radius: 8px;
}

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

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Deep blue text for contrast */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button:hover {
    background-color: #e6b800; /* Darker gold on hover */
    color: #001a33; /* Even darker blue on hover */
}

.page-terms-conditions__disclaimer {
    background-color: #003366; /* Deep blue footer */
    color: #e0e0e0;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9em;
}

.page-terms-conditions__disclaimer em {
    color: #FFCC00;
}

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

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

    .page-terms-conditions__article h3 {
        font-size: 1.2em;
    }

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

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

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

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

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

    .page-terms-conditions__container {
        padding: 0 15px;
    }

    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}