/* 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: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2463, #E3B505);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-terms-conditions__hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.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);
}

.page-terms-conditions__content {
    padding: 50px 0;
    background-color: #ffffff;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E3B505;
    padding-bottom: 10px;
}

.page-terms-conditions__sub-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #495057;
}

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

.page-terms-conditions__list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-terms-conditions__list li strong {
    color: #0A2463;
}

.page-terms-conditions__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-wrapper {
    background-color: #f0f8ff;
    border: 1px solid #e0e7eb;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__cta-text {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E3B505;
}

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

.page-terms-conditions__cta-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
}

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

    .page-terms-conditions__hero-description {
        font-size: 1em;
    }

    .page-terms-conditions__section-title {
        font-size: 1.6em;
    }

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

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

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

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

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 40px 0;
    }

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

    .page-terms-conditions__hero-description {
        font-size: 0.9em;
    }

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

    .page-terms-conditions__section-title {
        font-size: 1.4em;
        margin-top: 30px;
    }

    .page-terms-conditions p,
    .page-terms-conditions__list li {
        font-size: 0.95em;
    }

    .page-terms-conditions__cta-wrapper {
        padding: 25px 15px;
    }
}