/* style/terms-conditions.css */

.page-terms-conditions {
    font-family: Arial, sans-serif;
    color: #e5e5d1; /* Light text for readability on dark backgrounds */
    background-color: #1A1A2E; /* Primary dark background */
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #E6B325;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    color: #E6B325; /* Auxiliary golden color for main title */
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    color: #e5e5d1;
    max-width: 700px;
    margin: 0 auto;
}

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

.page-terms-conditions__article {
    background-color: #2a2a4a; /* Slightly lighter dark background for content block */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #E6B325; /* Golden color for section headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(230, 179, 37, 0.5);
    padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
    font-size: 1.6em;
    color: #e5e5d1;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions p {
    margin-bottom: 1em;
    color: #cccccc;
}

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

.page-terms-conditions__list li {
    margin-bottom: 0.5em;
}

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

.page-terms-conditions__cta-box {
    text-align: center;
    background-color: #1A1A2E; /* Dark background for CTA */
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    border: 1px solid #E6B325;
}

.page-terms-conditions__cta-text {
    font-size: 1.5em;
    color: #e5e5d1;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #E6B325; /* Golden button */
    color: #1A1A2E; /* Dark text on golden button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #ffda6a; /* Lighter golden on hover */
    transform: translateY(-3px);
}

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

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

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

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

    .page-terms-conditions__cta-text {
        font-size: 1.2em;
    }

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

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

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

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

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