.page-terms-conditions {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

.page-terms-conditions__hero-section {
    position: relative;
    background-color: #2F6BFF; /* Primary color as a fallback background for hero */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-terms-conditions__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
}

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

.page-terms-conditions__hero-content {
    background: linear-gradient(to right, #2F6BFF, #6FA3FF); /* Gradient background for content area */
    padding: 40px 20px;
    text-align: center;
    color: #FFFFFF; /* White text for contrast on blue background */
}

.page-terms-conditions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #FFFFFF; /* White for H1 */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example clamp for H1 */
}

.page-terms-conditions__description {
    font-size: 1.125rem; /* 18px */
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFFFFF; /* White for description */
}

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

.page-terms-conditions__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly darker/inverted on hover */
}

.page-terms-conditions__content-section {
    padding: 40px 20px;
    max-width: 1200px; /* Content max-width */
    margin: 0 auto;
    background-color: #F4F7FB; /* Background color */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-30px); /* Lift content section slightly over hero */
    z-index: 1;
    position: relative;
}

.page-terms-conditions__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-terms-conditions__section-title {
    font-size: 2rem; /* 32px */
    color: #1F2D3D; /* Text Main color */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-terms-conditions__section-title:first-of-type {
    margin-top: 0;
}

.page-terms-conditions__paragraph {
    font-size: 1rem; /* 16px */
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-terms-conditions__paragraph strong {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-terms-conditions__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-terms-conditions__list-item {
    background-color: #FFFFFF; /* Card BG color */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-terms-conditions__list-heading {
    font-size: 1.25rem; /* 20px */
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions__list-paragraph {
    font-size: 0.9375rem; /* 15px */
    color: #1F2D3D; /* Text Main color */
    line-height: 1.7;
    margin-bottom: 0;
}

.page-terms-conditions__list-paragraph strong {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-terms-conditions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.25rem; /* 20px */
}

.page-terms-conditions__paragraph a,
.page-terms-conditions__list-paragraph a {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__paragraph a:hover,
.page-terms-conditions__list-paragraph a:hover {
    text-decoration: underline;
}

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

    .page-terms-conditions__main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-terms-conditions__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-terms-conditions__content-section {
        padding: 20px 15px;
        transform: translateY(-20px);
    }

    .page-terms-conditions__section-title {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-terms-conditions__list-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .page-terms-conditions__list-heading {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .page-terms-conditions__list-paragraph {
        font-size: 0.875rem; /* 14px */
    }

    .page-terms-conditions__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Ensure images in content area are responsive */
    .page-terms-conditions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-terms-conditions__section-title {
        font-size: 1.4rem;
    }
}