/* style/terms-conditions.css */

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

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2463, #3B5998); /* Gradient from primary to a slightly lighter blue */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

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

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

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #444444;
}

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

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Buttons */
.page-terms-conditions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1em;
}

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

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

.page-terms-conditions__btn--secondary {
    background-color: transparent;
    color: #0A2463; /* Dark blue text */
    border: 2px solid #0A2463; /* Dark blue border */
    margin-left: 15px;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #0A2463; /* Dark blue background on hover */
    color: #FFD700; /* Gold text on hover */
    transform: translateY(-2px);
}

/* Call to Action Section */
.page-terms-conditions__cta {
    text-align: center;
    padding: 50px 20px;
    background-color: #0A2463; /* Primary blue background */
    color: #ffffff;
    border-radius: 8px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* 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 {
        padding: 20px;
    }
    .page-terms-conditions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-left: 0;
        display: block;
        width: fit-content;
        margin: 15px auto 0 auto;
    }
    .page-terms-conditions__btn--secondary {
        margin-top: 15px;
    }
    .page-terms-conditions__cta p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }
    .page-terms-conditions__heading {
        font-size: 1.3em;
    }
    .page-terms-conditions__hero {
        padding: 50px 0;
    }
    .page-terms-conditions__content {
        padding: 30px 0;
    }
}