/* style/terms-conditions.css */

/* Base Styles for the Terms and Conditions page */
.page-terms-conditions {
    color: #f0f0f0; /* Light text for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Body background handled by shared.css */
}

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

/* Hero Section */
.page-terms-conditions__hero-section {
    position: relative;
    padding: 80px 0 60px;
    background-color: #0A2463; /* Deep blue background */
    color: #ffffff;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-terms-conditions__hero-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content Area */
.page-terms-conditions__content-area {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for content blocks */
    color: #f0f0f0;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    font-weight: bold;
    color: #FFD700; /* Gold for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-terms-conditions__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

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

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

.page-terms-conditions a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-terms-conditions a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Buttons */
.page-terms-conditions__btn-primary,
.page-terms-conditions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-terms-conditions__btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text */
    border-color: #FFD700;
    margin-right: 15px;
}

.page-terms-conditions__btn-primary:hover {
    background-color: #e6c200;
    color: #0A2463;
    border-color: #e6c200;
}

.page-terms-conditions__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border-color: #FFD700;
}

.page-terms-conditions__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
}

/* Call to Action Section */
.page-terms-conditions__cta-section {
    background-color: #0A2463;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.page-terms-conditions__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-terms-conditions__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Images */
.page-terms-conditions__image-wrapper {
    margin: 30px auto;
    text-align: center;
}

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

/* FAQ Section */
.page-terms-conditions__faq-list {
    margin-top: 40px;
}