.page-terms-conditions {
    padding-top: 10px; /* Small padding, body handles --header-offset */
    background-color: #F4F7FB; /* Background color from palette */
    color: #1F2D3D; /* Main text color from palette */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-terms-conditions__container {
    max-width: 1200px; /* Boxed layout */
    margin: 0 auto;
    padding: 20px;
}

.page-terms-conditions__hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient as hero background for consistency */
    padding-bottom: 40px; /* Space below text */
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit hero image height */
}

.page-terms-conditions__hero-content {
    text-align: center;
    padding: 40px 20px 0; /* Adjusted padding, image is above */
    color: #FFFFFF; /* White text on blue background */
}

.page-terms-conditions__main-title {
    /* No fixed font-size, use font-weight and line-height */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-terms-conditions__description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFFFFF;
}

.page-terms-conditions__content-section {
    background-color: #FFFFFF; /* Card BG color for content */
    padding: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: -60px; /* Pull content up over hero section slightly */
    position: relative;
    z-index: 1;
}

.page-terms-conditions__intro {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D6E2FF; /* Border color from palette */
}

.page-terms-conditions__update-date {
    font-size: 0.9em;
    color: #6FA3FF; /* Auxiliary color */
    text-align: right;
    margin-top: 20px;
}

.page-terms-conditions__section-block {
    margin-bottom: 30px;
}

.page-terms-conditions__heading-2 {
    font-size: 1.8em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    border-bottom: 2px solid #2F6BFF; /* Main color as highlight */
    padding-bottom: 5px;
}

.page-terms-conditions__heading-3 {
    font-size: 1.4em;
    color: #1F2D3D; /* Main text color */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-terms-conditions__section-block p,
.page-terms-conditions__section-block ul {
    margin-bottom: 15px;
}

.page-terms-conditions__section-block ul {
    list-style: disc;
    margin-left: 20px;
}

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

.page-terms-conditions__section-block a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
}

.page-terms-conditions__section-block a:hover {
    text-decoration: underline;
}

.page-terms-conditions__cta-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #D6E2FF;
}

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

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px 15px;
    transition: background-color 0.3s ease;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    opacity: 0.9;
}

.page-terms-conditions__cta-button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Primary button color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__container {
        padding: 15px;
    }

    .page-terms-conditions__hero-content {
        padding: 20px 15px 0;
    }

    .page-terms-conditions__main-title {
        font-size: 2em; /* Adjusted for mobile, still no fixed rem/em */
    }

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

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

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

    .page-terms-conditions__hero-image,
    .page-terms-conditions__content-section img { /* Apply to all images in content area */
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
        object-fit: cover;
    }
}