/* style/terms-conditions.css */

/* Base styles for the page content */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text on dark body background */
    background-color: #1a1a1a; /* Explicitly set for consistency with body background */
    padding-bottom: 60px; /* Space above footer */
}

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

/* Hero Section */
.page-terms-conditions__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 0; /* Assumes shared.css handles body padding for header on desktop */
}

.page-terms-conditions__hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-terms-conditions__hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken background image for text readability */
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text */
    border-radius: 10px;
}

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-terms-conditions__hero-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-terms-conditions__hero-cta {
    margin-top: 30px;
}

/* General Section Styles */
.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #017439; /* Brand color for main titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #017439;
    padding-bottom: 10px;
}

.page-terms-conditions__faq-heading {
    font-size: 1.5em;
    color: #017439; /* Brand color for FAQ questions */
    margin: 0;
}

.page-terms-conditions__paragraph {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #ffffff; /* Light text on dark background */
}

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