/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light gray for main text on dark background */
    background-color: #000080; /* Dark blue background */
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #FFD700, #000080);
    padding: 80px 0 40px;
    text-align: center;
    color: #000080; /* Dark blue text on gold/blue gradient */
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1); /* Light gold overlay */
    pointer-events: none;
}

.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #000080; /* Dark blue for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #333333; /* Darker grey for subtitle on hero */
}

.page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    transition: transform 0.3s ease;
}

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

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #000066; /* Slightly lighter dark blue for content sections */
    color: #f0f0f0;
}

.page-terms-conditions__article {
    background-color: #00004d; /* Even lighter dark blue for article backgrounds */
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

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

.page-terms-conditions__sub-heading {
    font-size: 1.8em;
    color: #b39700; /* Darker gold for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

.page-terms-conditions__article li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #000033; /* Very dark blue for CTA background */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
}

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

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@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__sub-heading {
        font-size: 1.4em;
    }

    .page-terms-conditions__article {
        padding: 20px;
    }

    .page-terms-conditions__cta-text {
        font-size: 1.3em;
    }

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

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

    .page-terms-conditions__subtitle {
        font-size: 1em;
    }

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

    .page-terms-conditions__content-section {
        padding: 40px 0;
    }

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

    .page-terms-conditions__sub-heading {
        font-size: 1.2em;
    }

    .page-terms-conditions__article {
        padding: 15px;
        margin-bottom: 30px;
    }

    .page-terms-conditions__cta-text {
        font-size: 1.1em;
    }

    .page-terms-conditions__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}