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

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-terms-conditions__heading {
    font-size: 2em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFCC00;
    padding-bottom: 10px;
}

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

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

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

.page-terms-conditions__highlight {
    color: #003366;
    font-weight: bold;
}

.page-terms-conditions__keyword {
    color: #FFCC00;
    font-weight: bold;
}

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

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

.page-terms-conditions__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

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

.page-terms-conditions__image-caption {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.9em;
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 8px;
    border: 1px dashed #FFCC00;
}

.page-terms-conditions__cta-text {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

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

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

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

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

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

    .page-terms-conditions__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .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: 15px;
    }

    .page-terms-conditions__cta-text {
        font-size: 1.2em;
    }

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