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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.page-terms-conditions__hero-content {
    max-width: 800px;
    z-index: 1;
}

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

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

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #ffc107;
    color: #007bff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__btn:hover {
    background-color: #e0a800;
    color: #0056b3;
}

.page-terms-conditions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.3;
    max-width: 400px;
    height: auto;
    z-index: 0;
}

.page-terms-conditions__section {
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

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

.page-terms-conditions__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 25px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.page-terms-conditions p {
    margin-bottom: 15px;
    color: #555;
}

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

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

.page-terms-conditions__call-to-action {
    background-color: #007bff;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

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

.page-terms-conditions__btn--secondary {
    background-color: #fff;
    color: #007bff;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

.page-terms-conditions .highlight {
    color: #ffc107;
}

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

.page-terms-conditions a {
    color: #007bff;
    text-decoration: none;
}

.page-terms-conditions a:hover {
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1.1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
    .page-terms-conditions__hero-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__section {
        padding: 40px 15px;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__hero-image {
        display: none;
    }
}