.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Ensures consistent background */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

@media (max-width: 768px) {
    .page-terms-conditions {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset if needed */
    }
}

.page-terms-conditions__hero-section {
    background-color: #000000; /* Main brand color for hero background */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Emphasize title with login button color */
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px;
    text-align: center;
    font-size: 1.1em;
}

.page-terms-conditions__btn--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-terms-conditions__btn--register:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-terms-conditions__btn--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-terms-conditions__btn--login:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.page-terms-conditions__btn--promo {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-terms-conditions__btn--promo:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

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

.page-terms-conditions__section {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    color: #333333;
}

.page-terms-conditions__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__link:hover {
    text-decoration: underline;
}

.page-terms-conditions__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum display size */
    min-height: 200px; /* Ensure minimum display size */
}

.page-terms-conditions__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FCBC45;
}

.page-terms-conditions__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

    .page-terms-conditions__hero-actions,
    .page-terms-conditions__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-terms-conditions__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-terms-conditions__section {
        padding: 15px;
    }

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

    /* Ensure images are responsive and don't overflow */
    .page-terms-conditions img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-terms-conditions__content-area img {
    min-width: 200px;
    min-height: 200px;
}