/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for readability on light background */
    background-color: #f8f8f8; /* Light background */
}

/* Container for consistent spacing */
.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0D47A1, #08347A); /* Darker blue variant for gradient */
    color: #ffffff; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

/* Content Section */
.page-terms-conditions__content-section {
    padding: 60px 0;
}

.page-terms-conditions__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #0D47A1; /* Primary blue for headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
}

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

.page-terms-conditions__highlight {
    color: #0D47A1; /* Primary blue for keyword highlights */
    font-weight: bold;
}

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

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

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

/* Call to Action Section */
.page-terms-conditions__cta-section {
    text-align: center;
    padding: 50px 40px;
    background-color: #0D47A1; /* Primary blue background */
    color: #ffffff; /* White text */
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0D47A1; /* Primary blue text on gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-terms-conditions__cta-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* 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__article {
        padding: 30px;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.5em;
    }
    .page-terms-conditions__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@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__article {
        padding: 20px;
    }
    .page-terms-conditions__list {
        margin-left: 20px;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.2em;
    }
    .page-terms-conditions__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}