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

.page-terms-conditions__hero {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    background-image: url('[GALLERY:hero:legal,security,agreement,nohu67,background]');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
    z-index: 1;
}

.page-terms-conditions__hero > * {
    position: relative;
    z-index: 2;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-terms-conditions__heading {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #333;
}

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

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

.page-terms-conditions .text-highlight {
    color: #003366;
    font-weight: bold;
}

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

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

.page-terms-conditions__cta-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f4f7;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
    border-radius: 8px;
}

.page-terms-conditions__cta-text {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .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: 20px;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.1em;
    }
    .page-terms-conditions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }
    .page-terms-conditions__subtitle {
        font-size: 0.9em;
    }
    .page-terms-conditions__heading {
        font-size: 1.3em;
    }
    .page-terms-conditions__article {
        padding: 15px;
    }
}