/* style/terms-conditions.css */

/* --- General Page Styles --- */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--secondary-color, #FFFFFF); /* Body background is white */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-terms-conditions__text-center {
    text-align: center;
}

/* --- Hero Section --- */
.page-terms-conditions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #017439 50%, #005f2e 100%); /* Dark green gradient */
    color: #ffffff;
    overflow: hidden; /* For image positioning */
}

.page-terms-conditions__hero-container {
    position: relative;
    z-index: 2; /* Ensure text is above image if image is background-like */
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-terms-conditions__main-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFF00; /* Use custom font color for main heading */
    line-height: 1.2;
}