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

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
    padding: 80px 0 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-terms-conditions__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: none; /* Keep original image color */
}

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

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

.page-terms-conditions__subtitle a {
    color: #fff;
    text-decoration: underline;
}

.page-terms-conditions__subtitle a:hover {
    color: #eee;
}

.page-terms-conditions__content {
    padding: 40px 0;
    background-color: #fff;
}

.page-terms-conditions__article {
    background-color: #fff;
    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: #1E90FF;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

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

.page-terms-conditions__article p a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__article p a:hover {
    text-decoration: underline;
    color: #0d6efd;
}

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

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-terms-conditions__article ul li a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__article ul li a:hover {
    text-decoration: underline;
    color: #0d6efd;
}

.page-terms-conditions__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    filter: none; /* Keep original image color */
}

.page-terms-conditions__highlight {
    color: #FFD700;
}

.page-terms-conditions__cta-section {
    background-color: #f0f8ff; /* Light blue background */
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid #d0e8ff;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-title {
    font-size: 2.2em;
    color: #1E90FF;
    margin-bottom: 15px;
}

.page-terms-conditions__cta-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-text a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__cta-text a:hover {
    text-decoration: underline;
    color: #0d6efd;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.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.3s ease;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-terms-conditions__btn--primary {
    background-color: #FFD700;
    color: #333;
    border: 1px solid #FFD700;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-terms-conditions__btn--secondary {
    background-color: #1E90FF;
    color: #fff;
    border: 1px solid #1E90FF;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #1565b3;
    transform: translateY(-2px);
}

.page-terms-conditions__cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    filter: none; /* Keep original image color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.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__cta-title {
        font-size: 1.8em;
    }

    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-terms-conditions__btn {
        width: 80%;
        max-width: 300px;
    }
}

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

    .page-terms-conditions__hero {
        padding: 60px 0 30px;
    }

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

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

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

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

    .page-terms-conditions__cta-section {
        padding: 30px 20px;
    }

    .page-terms-conditions__btn {
        width: 90%;
    }
}