/* style/terms-conditions.css */

/* Base styles for the page content */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.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: 100px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: 0; /* Assuming shared.css sets body padding-top */
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4); /* Darken image for text readability, not changing color */
}

.page-terms-conditions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.page-terms-conditions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Content Area */
.page-terms-conditions__content-area {
    padding: 60px 0;
    background-color: #0a0a0a; /* Match body background for consistency */
    color: #ffffff; /* Light text for dark background */
}

.page-terms-conditions__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #017439;
    padding-bottom: 15px;
}

.page-terms-conditions__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-terms-conditions__sub-sub-title {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #017439;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-terms-conditions__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-terms-conditions__list-item {
    margin-bottom: 10px;
}

.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);
}

.page-terms-conditions a {
    color: #017439; /* Brand color for links */
    text-decoration: underline;
}

.page-terms-conditions a:hover {
    color: #028e46; /* Slightly darker brand color on hover */
    text-decoration: none;
}