.page-terms-conditions {
    color: #333333; /* Dark text for light body background */
    background-color: #f4f4f4;
}

.page-terms-conditions__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 60px;
    text-align: center;
    background-color: #0F1A2B; /* Brand primary dark blue */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

.page-terms-conditions__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-terms-conditions__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #0F1A2B; /* Primary dark blue */
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
}

.page-terms-conditions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-terms-conditions__inline-link {
    color: #0F1A2B; /* Dark blue for inline links */
    text-decoration: underline;
    font-weight: bold;
}

.page-terms-conditions__inline-link:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: none;
}

.page-terms-conditions__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0F1A2B;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-terms-conditions__cta-button--secondary {
    background-color: #0F1A2B;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__cta-button--secondary:hover {
    background-color: #1a2a3e;
    color: #ffffff;
    border-color: #ffffff;
}

.page-terms-conditions__call-to-action {
    text-align: center;
    background-color: #f9f9f9;
    padding: 50px 20px;
    margin-top: 60px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.page-terms-conditions__cta-text {
    font-size: 1.5em;
    color: #0F1A2B;
    margin-bottom: 30px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-terms-conditions__main-title {
        font-size: 2.5em;
    }

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

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

    .page-terms-conditions__text-block {
        font-size: 0.95em;
    }

    .page-terms-conditions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-terms-conditions__content-image {
        max-width: 100%;
        height: auto;
    }

    /* Mobile specific image constraint to prevent overflow */
    .page-terms-conditions__content-area img {
        max-width: 100%;
        height: auto;
    }

    .page-terms-conditions__hero-section {
        padding-bottom: 40px;
    }

    .page-terms-conditions__hero-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__main-title {
        font-size: 2em;
    }

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

    .page-terms-conditions__cta-button {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .page-terms-conditions__hero-section {
        padding-top: var(--header-offset, 100px); /* Adjust for smaller mobile header */
    }
}