/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #1A2A4A; /* Primary dark background */
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A2A4A 0%, #3e5a7b 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

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

.page-terms-conditions__title {
    font-size: 2.8em;
    color: #FFD700; /* Auxiliary color for titles */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

.page-terms-conditions__article p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-terms-conditions__article a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__article a:hover {
    text-decoration: underline;
    color: #e0c000;
}

.page-terms-conditions__heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
    font-weight: 600;
}

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

.page-terms-conditions__article ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-terms-conditions__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-terms-conditions__main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__content-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__image-wrapper--secondary {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-terms-conditions__cta-box {
    background-color: #2a3d5c; /* Slightly lighter dark blue */
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-box p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for button background */
    color: #1A2A4A; /* Primary color for button text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-terms-conditions__button:hover {
    background-color: #e0c000; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
    background-color: #1A2A4A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2A4A;
    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 p,
    .page-terms-conditions__article ul li {
        font-size: 0.95em;
    }
    .page-terms-conditions__hero {
        padding: 60px 15px;
    }
    .page-terms-conditions__content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }
    .page-terms-conditions__heading {
        font-size: 1.3em;
    }
    .page-terms-conditions__button {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }
    .page-terms-conditions__cta-box {
        padding: 20px;
    }
}