.page-terms-conditions {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-terms-conditions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
}

.page-terms-conditions__hero-content {
    text-align: center;
    padding: 20px 20px 40px;
    max-width: 900px;
    margin-top: 20px;
}

.page-terms-conditions__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFB04D; /* Glow color for main title */
}

.page-terms-conditions__intro-text {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C; /* Border */
}

.page-terms-conditions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: #FFA53A; /* Auxiliary color */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-terms-conditions__paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    opacity: 0.85;
}

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

.page-terms-conditions__list-item {
    margin-bottom: 10px;
    opacity: 0.85;
}

.page-terms-conditions__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-terms-conditions__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-terms-conditions__cta-block {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #0D0E12; /* Background */
    border-radius: 8px;
    border: 1px solid #A84F0C; /* Border */
}

.page-terms-conditions__cta-text {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #FFF3E6; /* Text Main */
    font-weight: bold;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 165, 58, 0.4);
    min-width: 200px;
}

.page-terms-conditions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 165, 58, 0.6);
}

.page-terms-conditions__cta-button--secondary {
    background: #A84F0C; /* Border color for secondary */
    box-shadow: none;
}

.page-terms-conditions__cta-button--secondary:hover {
    background: #D96800; /* Deep Orange on hover */
    transform: translateY(-3px);
    box-shadow: none;
}

.page-terms-conditions__last-updated {
    text-align: right;
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions {
        padding-top: 8px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    .page-terms-conditions__hero-content {
        padding: 15px;
    }

    .page-terms-conditions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-terms-conditions__container {
        padding: 20px;
    }

    .page-terms-conditions__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-terms-conditions__paragraph,
    .page-terms-conditions__list-item {
        font-size: 0.95em;
    }

    .page-terms-conditions__content-image {
        max-width: 100%; /* Ensure images are responsive */
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

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

/* Ensure no content overflow on smaller screens */
@media (max-width: 768px) {
    .page-terms-conditions__content-area img {
        max-width: 100%;
        height: auto;
    }
}