/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-terms-conditions__hero {
    background-color: #0A2463;
    color: #FFD700;
    padding: 80px 20px;
    text-align: center;
    background-image: url('[GALLERY:bg:abstract,geometric,blue,gold]');
    background-size: cover;
    background-position: center;
}

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

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    color: #FFD700;
    opacity: 0.9;
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

.page-terms-conditions__text strong {
    color: #0A2463;
}

.page-terms-conditions ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.page-terms-conditions ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-terms-conditions__link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

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

.page-terms-conditions__cta {
    text-align: center;
    background-color: #0A2463;
    padding: 40px 20px;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #FFD700;
}

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

.page-terms-conditions__cta-subtext {
    font-size: 1.1em;
    margin-top: 15px;
    color: rgba(255, 215, 0, 0.8);
}

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    color: #0A2463;
}

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

    .page-terms-conditions__subtitle,
    .page-terms-conditions__text,
    .page-terms-conditions ul li {
        font-size: 1em;
    }

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

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

    .page-terms-conditions__btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 60px 15px;
    }

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

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

    .page-terms-conditions__cta {
        padding: 30px 15px;
    }

    .page-terms-conditions__btn {
        width: 100%;
        box-sizing: border-box;
    }
}