/* style/terms-conditions.css */

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

/* Hero Section */
.page-terms-conditions__hero {
    background-color: #0A1931;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: bold;
}

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

.page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-terms-conditions__content-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

.page-terms-conditions__heading {
    color: #0A1931;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-terms-conditions__heading--visible {
    opacity: 1;
    transform: translateY(0);
}

.page-terms-conditions__heading:first-of-type {
    margin-top: 0;
}

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

.page-terms-conditions__link {
    color: #0A1931;
    text-decoration: underline;
}

.page-terms-conditions__link:hover {
    color: #FFD700;
}

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

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

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

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

.page-terms-conditions__image--small {
    max-width: 100px;
    margin: 0;
}

.page-terms-conditions__image--right {
    float: right;
    margin-left: 30px;
}

.page-terms-conditions__image--left {
    float: left;
    margin-right: 30px;
}

.page-terms-conditions__call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    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: #e6c200;
    transform: translateY(-2px);
}

/* Promo Section */
.page-terms-conditions__promo {
    background-color: #0A1931;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-terms-conditions__heading--white {
    color: #FFD700;
    border-bottom-color: #e0e0e0;
}

.page-terms-conditions__description--white {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 30px;
}

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

.page-terms-conditions__button--primary {
    background-color: #FFD700;
    color: #0A1931;
}

.page-terms-conditions__button--primary:hover {
    background-color: #e6c200;
}

.page-terms-conditions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
}

/* Clearfix for floated images */
.page-terms-conditions__article::after {
    content: "";
    display: table;
    clear: both;
}

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

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

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

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

    .page-terms-conditions__image {
        float: none;
        margin: 20px auto;
        display: block;
    }

    .page-terms-conditions__call-to-action,
    .page-terms-conditions__buttons {
        flex-direction: column;
        gap: 15px;
    }

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

@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__hero,
    .page-terms-conditions__content-section,
    .page-terms-conditions__promo {
        padding: 40px 15px;
    }
}