/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2463 0%, #E3B505 100%);
    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: 300px;
}

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

.page-terms-conditions__title {
    font-size: 3.5em;
    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.5em;
    color: #eee;
    margin-bottom: 30px;
}

.page-terms-conditions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(3px);
}

/* Content Section */
.page-terms-conditions__content-section {
    padding: 40px 0;
    background-color: #fff;
}

.page-terms-conditions__article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fdfdfd;
    border-left: 5px solid #0A2463;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.page-terms-conditions__article a:hover {
    color: #E3B505;
}

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

.page-terms-conditions__image--small {
    max-width: 60%;
}

.page-terms-conditions__image--large {
    max-width: 80%;
}

/* Call to Action */
.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #E3B505;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-wrapper p {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #0A2463;
    color: #fff;
    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;
}

.page-terms-conditions__cta-button:hover {
    background-color: #051A4D;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* 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: 15px;
    }

    .page-terms-conditions__image--small,
    .page-terms-conditions__image--large {
        max-width: 100%;
    }

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

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

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

    .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__container {
        padding: 15px;
    }
}