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

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #003366, #4d7094);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0) 70%);
    animation: page-terms-conditions__hero-pulse 10s infinite alternate;
}

@keyframes page-terms-conditions__hero-pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-terms-conditions__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-terms-conditions__section--alt {
    background-color: #e6f0f8; /* Light variant of primary color for contrast */
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #003366;
    margin-bottom: 25px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
    font-weight: bold;
}

.page-terms-conditions p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

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

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

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

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 12px 25px;
    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;
    margin-top: 20px;
}

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

.page-terms-conditions__btn--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e6b800;
}

.page-terms-conditions__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    margin-left: 15px;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #002244;
}

.page-terms-conditions__cta {
    background-color: #003366;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #FFCC00;
    margin-bottom: 15px;
}

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

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1.2em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions p,
    .page-terms-conditions ul li {
        font-size: 1em;
    }
    .page-terms-conditions__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-terms-conditions__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
    .page-terms-conditions__cta-text {
        font-size: 1em;
    }
    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .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__section {
        padding: 40px 0;
    }
    .page-terms-conditions__hero {
        padding: 60px 0;
    }
}