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

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

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #0A2463, #E3B23C);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
    position: relative;
    z-index: 1;
}

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

.page-terms-conditions__toc {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__toc-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 20px;
    border-bottom: 2px solid #E3B23C;
    padding-bottom: 10px;
}

.page-terms-conditions__toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-terms-conditions__toc li {
    margin-bottom: 10px;
}

.page-terms-conditions__toc a {
    color: #0A2463;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-terms-conditions__toc a:hover {
    color: #E3B23C;
    text-decoration: underline;
}

.page-terms-conditions__article {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #E3B23C;
    padding-left: 15px;
}

.page-terms-conditions__sub-section-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #E0E0E0;
    padding-bottom: 5px;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

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

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

.page-terms-conditions__link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
    color: #E3B23C;
}

.page-terms-conditions__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

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

.page-terms-conditions__cta-text {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #E3B23C;
    color: #0A2463;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E3B23C;
}

.page-terms-conditions__cta-button:hover {
    background-color: #F0C96F;
    transform: translateY(-3px);
    color: #0A2463;
    border-color: #F0C96F;
}

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

    .page-terms-conditions__hero-description,
    .page-terms-conditions__cta-text {
        font-size: 1em;
    }

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

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

    .page-terms-conditions__article,
    .page-terms-conditions__toc {
        padding: 25px;
    }

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

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

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

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

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

    .page-terms-conditions__cta-wrapper {
        padding: 25px;
    }
}