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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-terms-conditions__hero .page-terms-conditions__container {
    position: relative;
    z-index: 1;
}

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

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

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

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

.page-terms-conditions__heading {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 5px;
}

.page-terms-conditions__article 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__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;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta {
    margin-top: 40px;
    padding: 30px;
    background-color: #e9f5ff;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    text-align: center;
}

.page-terms-conditions__cta p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }

    .page-terms-conditions__heading {
        font-size: 1.5em;
    }

    .page-terms-conditions__hero {
        padding: 40px 15px;
    }

    .page-terms-conditions__article {
        padding: 20px;
    }

    .page-terms-conditions__cta p {
        font-size: 1.1em;
    }

    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
    }

    .page-terms-conditions__heading {
        font-size: 1.3em;
    }
}