/* style/terms-conditions.css */
.page-terms-conditions {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Navy Blue */
    --text-color-light-bg: #333333; /* Dark gray for light backgrounds */
    --text-color-dark-bg: #ffffff; /* White for dark backgrounds */
    --heading-color: var(--secondary-color);
    --button-bg: var(--primary-color);
    --button-text: var(--secondary-color);
    --link-color: var(--secondary-color);
    --background-light: #f9f9f9; /* Light background for main content */
    --background-dark: var(--secondary-color); /* Dark background for hero */

    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light-bg);
    background-color: var(--background-light);
    font-size: 16px;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000060 100%); /* Darker gradient for hero */
    padding: 80px 20px;
    color: var(--text-color-dark-bg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--primary-color); /* Gold title on dark background */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

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

.page-terms-conditions__text-block {
    background-color: var(--text-color-dark-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: var(--heading-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-terms-conditions__text-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-terms-conditions__text-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.page-terms-conditions__text-block strong {
    color: var(--link-color); /* Use navy blue for strong text on light background */
}

.page-terms-conditions__image-wrapper {
    margin: 30px 0;
    text-align: center;
    overflow: hidden; /* Clear floats */
}

.page-terms-conditions__image-wrapper--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 40%; /* Adjust as needed */
}

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

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px dashed #eee;
}

.page-terms-conditions__cta-wrapper p {
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: bold;
    color: var(--secondary-color);
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: var(--button-bg); /* Gold background */
    color: var(--button-text); /* Navy text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1.1em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions__text-block {
        padding: 30px 20px;
    }
    .page-terms-conditions__image-wrapper--right {
        float: none;
        margin-left: 0;
        max-width: 100%;
    }
}

@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__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-terms-conditions__text-block {
        padding: 20px 15px;
    }
}