.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 */
}

/* Hero Section */
.page-terms-conditions__hero-section {
    position: relative;
    padding: 120px 20px 60px; /* Adjust padding-top to account for header offset */
    background: linear-gradient(to right, #017439, #005f2c); /* Brand green gradient */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-terms-conditions__hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
}

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-terms-conditions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.15; /* Subtly blend image into background */
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Make image grayscale to blend with background */
    transform: scale(1.1);
}

/* Content Area */
.page-terms-conditions__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background for content contrast */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-terms-conditions__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand green for main titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

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

.page-terms-conditions__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

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

.page-terms-conditions__list-item {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-terms-conditions__list-item strong {
    color: #ffffff;
}

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

/* Buttons */
.page-terms-conditions__btn-primary,
.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login button color */
    color: #FFFFFF; /* Adjusted for contrast, overriding #FFFF00 */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-terms-conditions__btn-primary:hover,
.page-terms-conditions__cta-button:hover {
    background-color: #a30606; /* Darker red on hover */
    transform: translateY(-2px);
}

.page-terms-conditions__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #017439; /* Brand green */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #017439;
    cursor: pointer;
    margin-top: 20px;
}

.page-terms-conditions__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* FAQ Section */
.page-terms-conditions__faq-section {
    padding: 60px 20px;
    background-color: #121212; /* Body background color */
}

.page-terms-conditions__faq-list {
    margin-top: 30px;
}

.page-terms-conditions__faq-item {
    background-color: #1a1a1a; /* Card background */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}