.page-terms-conditions {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-terms-conditions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Blue White gradient */
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding */
    min-height: auto;
}

.page-terms-conditions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

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

.page-terms-conditions__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #FFFFFF; /* White text on blue background */
}

.page-terms-conditions__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-terms-conditions__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-terms-conditions__content-section {
    padding: 40px 0;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2F6BFF; /* Main color for section titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

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

.page-terms-conditions__list-item {
    margin-bottom: 15px;
    background-color: #F4F7FB; /* Light background for list items */
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid #D6E2FF; /* Border color */
}

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

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

.page-terms-conditions__paragraph a {
    color: #2F6BFF;
    text-decoration: underline;
    font-weight: 600;
}

.page-terms-conditions__paragraph a:hover {
    color: #4A8BFF;
}


/* Responsive Adjustments */
@media (min-width: 769px) {
    .page-terms-conditions__hero-section {
        flex-direction: column;
    }
    .page-terms-conditions__hero-image-wrapper {
        width: 100%;
        max-width: 1200px;
    }
    .page-terms-conditions__content-section {
        padding: 60px 40px;
    }
}

@media (max-width: 849px) {
    .page-terms-conditions__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .page-terms-conditions__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
    .page-terms-conditions__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    .page-terms-conditions__section-title {
        font-size: 1.6rem;
    }
    .page-terms-conditions__list-heading {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__container {
        padding: 15px;
    }
    .page-terms-conditions__hero-section {
        padding-bottom: 30px;
    }
    .page-terms-conditions__hero-content {
        padding: 0 15px;
    }
    /* Ensure images are responsive and don't overflow */
    .page-terms-conditions__content-image,
    .page-terms-conditions__hero-image {
        max-width: 100%;
        height: auto;
    }
    /* Content area images CSS dimensions lower limit check */
    .page-terms-conditions__content-section img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-terms-conditions__content-section {
        padding: 30px 20px;
        margin: 20px auto;
    }
}

@media (max-width: 549px) {
    .page-terms-conditions__main-title {
        font-size: clamp(1.4rem, 8vw, 2.2rem);
    }
    .page-terms-conditions__description {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }
    .page-terms-conditions__section-title {
        font-size: 1.4rem;
    }
    .page-terms-conditions__list-heading {
        font-size: 1rem;
    }
    .page-terms-conditions__cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}