.page-terms-conditions {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    padding-top: 10px; /* Small padding-top for first section */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-terms-conditions__hero-section {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.page-terms-conditions__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-terms-conditions__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 */
    object-fit: cover;
    object-position: center;
}

.page-terms-conditions__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.page-terms-conditions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
    /* Using clamp for responsive font size */
    font-size: clamp(1.5rem, 4.5vw, 2.8rem); /* Adjusted for the 50-60 char length and impact */
    max-width: 900px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8; /* Text Main */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C; /* Text for button */
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

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

.page-terms-conditions__container {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-title {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    color: #F3C54D; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

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

.page-terms-conditions__paragraph a {
    color: #FFB04A; /* Gold-like for links */
    text-decoration: underline;
}

.page-terms-conditions__paragraph a:hover {
    color: #D86A14; /* Darker gold on hover */
}

.page-terms-conditions__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #FFF1E8; /* Text Main */
}

.page-terms-conditions__list-item {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.page-terms-conditions__list-item::marker {
    color: #F3C54D; /* Gold */
}

.page-terms-conditions__last-paragraph {
    margin-top: 30px;
    font-weight: 500;
}

.page-terms-conditions__cta-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-terms-conditions__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
}

.page-terms-conditions__button--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C; /* Text for button */
}

.page-terms-conditions__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-terms-conditions__button--secondary {
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8; /* Text Main */
    border: 1px solid #6A1E1E; /* Border */
}

.page-terms-conditions__button--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(126, 13, 13, 0.4);
    background-color: #C61F1F; /* Main color */
}

/* Ensure content images are responsive and not too small */
.page-terms-conditions__container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto; /* Center images */
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
    filter: none; /* No filters */
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-terms-conditions__main-title {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
    }
    .page-terms-conditions__description {
        font-size: 1rem;
    }
    .page-terms-conditions__section-title {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    }
    .page-terms-conditions__hero-banner img {
        aspect-ratio: 16/9; /* More common for mobile hero */
    }
    .page-terms-conditions__container {
        padding: 20px;
    }
    .page-terms-conditions__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-terms-conditions__button {
        width: 100%;
        max-width: 300px; /* Limit width on small screens */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 549px) {
    .page-terms-conditions__main-title {
        font-size: clamp(1.1rem, 7vw, 2rem);
    }
    .page-terms-conditions__description {
        font-size: 0.95rem;
    }
    .page-terms-conditions__section-title {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
    }
    .page-terms-conditions__paragraph,
    .page-terms-conditions__list-item {
        font-size: 0.9rem;
    }
    .page-terms-conditions__list {
        margin-left: 15px;
    }
    .page-terms-conditions__hero-content {
        padding: 15px;
    }
    .page-terms-conditions__content-section {
        padding: 20px 15px;
    }
}

/* Content area image CSS size lower bound (applies to all img under .page-terms-conditions) */
.page-terms-conditions img:not(.page-terms-conditions__hero-banner img) { /* Exclude hero banner if it's not in the main content flow */
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow image to size based on content */
    height: auto;
}
/* Specifically for images within the content container */
.page-terms-conditions__container img {
    min-width: 200px;
    min-height: 200px;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .page-terms-conditions img {
        max-width: 100%;
        height: auto;
    }
}