/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-terms-conditions__hero {
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e9ecef;
}

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

.page-terms-conditions__section {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-terms-conditions__section:last-of-type {
    border-bottom: none;
}

.page-terms-conditions__heading {
    font-size: 2em;
    color: #007bff; /* Primary brand color */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc107; /* Secondary brand color for accent */
    padding-bottom: 10px;
}

.page-terms-conditions__paragraph {
    margin-bottom: 15px;
    color: #495057;
}

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

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

.page-terms-conditions__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-terms-conditions__cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f1f7fe; /* Light variant of primary color */
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__cta-section .page-terms-conditions__paragraph {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #343a40;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
    background-color: #ffc107; /* Secondary brand color */
    color: #333;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #e0a800;
    color: #333;
}

.page-terms-conditions .keyword {
    font-weight: bold;
    color: #007bff;
}

/* 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__button {
        display: block;
        width: fit-content;
        margin: 15px auto;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }
    .page-terms-conditions__subtitle {
        font-size: 0.9em;
    }
    .page-terms-conditions__heading {
        font-size: 1.3em;
    }
    .page-terms-conditions__list {
        margin-left: 15px;
    }
}