/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #0A2239; /* Main dark background */
    line-height: 1.6;
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2239, #2C4A6B);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

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

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

.page-terms-conditions__section {
    padding: 60px 0;
    background-color: #0A2239;
}

.page-terms-conditions__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.page-terms-conditions__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-terms-conditions__image-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-terms-conditions__image:hover {
    transform: translateY(-5px);
}

.page-terms-conditions__article {
    flex: 2;
    min-width: 300px;
    padding: 20px;
    background-color: #1A354E; /* Slightly lighter dark blue for content blocks */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for subheadings */
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

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

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

.page-terms-conditions__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-terms-conditions__list-item strong {
    color: #FFD700;
}

.page-terms-conditions__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-terms-conditions__cta-section {
    background-color: #0A2239; /* Dark blue background */
    padding: 80px 0;
    text-align: center;
    border-top: 2px solid #FFD700;
}

.page-terms-conditions__cta-content {
    background-color: #1A354E; /* Slightly lighter dark blue for CTA box */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-terms-conditions__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--primary:hover {
    background-color: #E6C200;
    color: #000;
    transform: translateY(-3px);
}

.page-terms-conditions__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-terms-conditions__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-terms-conditions__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-terms-conditions__image-box {
        order: -1; /* Image appears first on smaller screens */
        margin-bottom: 30px;
    }
    .page-terms-conditions__image {
        max-width: 80%;
    }
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 60px 0 40px;
    }
    .page-terms-conditions__section {
        padding: 40px 0;
    }
    .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__paragraph, .page-terms-conditions__list-item {
        font-size: 0.95em;
    }
    .page-terms-conditions__cta-section {
        padding: 50px 0;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 0;
    }
    .page-terms-conditions__cta-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }
    .page-terms-conditions__heading {
        font-size: 1.3em;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.6em;
    }
    .page-terms-conditions__button {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 10px auto;
    }
    .page-terms-conditions__image-box {
        margin-bottom: 20px;
    }
    .page-terms-conditions__article {
        padding: 15px;
    }
}