/* style/terms-conditions.css */

/* Base styles for the page content wrapper */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background from shared.css */
    padding-bottom: 60px; /* Space before footer */
}

/* Container for consistent spacing */
.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-terms-conditions__hero-section {
    position: relative;
    padding: 80px 0;
    background-color: #1A2A4A; /* Dark brand color for hero background */
    color: #ffffff;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-terms-conditions__main-heading {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main heading */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__intro-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f8f8f8;
}

.page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* General Content Sections */
.page-terms-conditions__content-section {
    padding: 60px 0;
}

.page-terms-conditions__dark-bg {
    background-color: #1A2A4A; /* Dark brand color */
    color: #ffffff;
}

.page-terms-conditions__light-bg {
    background-color: #f0f0f0; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-terms-conditions__section-heading {
    font-size: 2em;
    color: #FFD700; /* Gold for section headings */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-terms-conditions__section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}}