/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light grey text for readability on dark background */
    background-color: #1a1a1a; /* Dark background */
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Dark red to gold gradient */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff; /* White text on gradient background */
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #ffffff; /* White title for hero section */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    color: #eee;
}

.page-terms-conditions__content {
    padding: 60px 0;
}

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

.page-terms-conditions__article {
    background-color: #2a2a2a; /* Slightly lighter dark background for articles */
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700; /* Gold accent */
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for headings */
    margin-bottom: 20px;
    border-bottom: 2px solid #8B0000; /* Dark red underline */
    padding-bottom: 10px;
}

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

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

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

.page-terms-conditions__link--promo {
    color: #FFD700; /* Gold link for promotional text */
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__link--promo:hover {
    text-decoration: underline;
    color: #ffd700cc;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #1a1a1a; /* Dark text for gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #ffd700cc;
    color: #000000;
}

.page-terms-conditions__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

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

.page-terms-conditions__image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #bbb;
    font-size: 0.9em;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-terms-conditions__cta {
    background-color: #8B0000; /* Dark red background for CTA */
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.page-terms-conditions__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold title on dark red CTA */
}

.page-terms-conditions__cta-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-terms-conditions__cta-buttons .page-terms-conditions__button {
    margin: 0 10px;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700;
    color: #1a1a1a;
}

.page-terms-conditions__button--primary:hover {
    background-color: #ffd700cc;
}

.page-terms-conditions__button--secondary {
    background-color: #1a1a1a;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #333;
    color: #ffd700cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }

    .page-terms-conditions__heading {
        font-size: 1.8em;
    }

    .page-terms-conditions__hero,
    .page-terms-conditions__content,
    .page-terms-conditions__cta {
        padding: 40px 15px;
    }

    .page-terms-conditions__article {
        padding: 20px;
    }

    .page-terms-conditions__cta-title {
        font-size: 2em;
    }

    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        display: flex;
    }

    .page-terms-conditions__cta-buttons .page-terms-conditions__button {
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }

    .page-terms-conditions__subtitle {
        font-size: 1em;
    }

    .page-terms-conditions__heading {
        font-size: 1.5em;
    }

    .page-terms-conditions__article {
        padding: 15px;
    }
}