/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for general content on dark background */
    background-color: #1A1A2E;
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #E0B95B;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    color: #E0B95B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    color: #d0d0d0;
}

.page-terms-conditions__section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(224, 185, 91, 0.2);
}

.page-terms-conditions__section--alt {
    background-color: #25253F; /* Slightly lighter dark background for contrast */
}

.page-terms-conditions__section--last {
    border-bottom: none;
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #E0B95B;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.page-terms-conditions__paragraph {
    margin-bottom: 20px;
    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: 10px;
}

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

.page-terms-conditions__link {
    color: #E0B95B;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.page-terms-conditions__image--small {
    max-width: 150px;
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #E0B95B; /* Accent color for button background */
    color: #1A1A2E; /* Dark text for button on light background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #f0c26b;
    transform: translateY(-2px);
}

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

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

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

    .page-terms-conditions__section {
        padding: 30px 0;
    }
}

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

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

    .page-terms-conditions__hero {
        padding: 40px 0;
    }

    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}