/* style/terms-conditions.css */

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.page-terms-conditions__hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

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

.page-terms-conditions__content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.page-terms-conditions__section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.page-terms-conditions__section:last-of-type {
    border-bottom: none;
}

.page-terms-conditions__section h2 {
    color: #000080;
    font-size: 1.8em;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-terms-conditions__section p {
    margin-bottom: 10px;
    color: #555;
}

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

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

.page-terms-conditions__section a {
    color: #000080;
    text-decoration: underline;
    font-weight: bold;
}

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

.page-terms-conditions__cta-banner {
    background-color: #000080;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    z-index: 1;
}

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

.page-terms-conditions__cta-banner h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-terms-conditions__cta-banner p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #eee;
}

.page-terms-conditions__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2em;
    border-color: #FFD700;
}

.page-terms-conditions__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-terms-conditions .highlight-keyword {
    color: #000080;
    font-weight: bold;
}

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

    .page-terms-conditions__hero p,
    .page-terms-conditions__cta-banner p {
        font-size: 1em;
    }

    .page-terms-conditions__section h2 {
        font-size: 1.5em;
    }

    .page-terms-conditions__cta-banner h3 {
        font-size: 1.8em;
    }

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

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

    .page-terms-conditions__hero h1 {
        font-size: 2em;
    }

    .page-terms-conditions__content {
        margin: 20px auto;
        padding: 15px;
    }

    .page-terms-conditions__section h2 {
        font-size: 1.3em;
        padding-left: 10px;
    }

    .page-terms-conditions__cta-banner {
        padding: 30px 15px;
    }

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