/* style/terms-conditions.css */
.page-terms-conditions {
    color: #ffffff; /* Light text for dark body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-terms-conditions__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: center;
    background-color: #1A1A2E;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-terms-conditions__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__main-title {
    font-size: 3.2em;
    color: #E94560;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-terms-conditions__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #E94560;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

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

.page-terms-conditions__cta-button--secondary {
    background-color: #1A1A2E;
    border: 2px solid #E94560;
    box-shadow: none;
}

.page-terms-conditions__cta-button--secondary:hover {
    background-color: #2e2e4a;
    border-color: #ff6380;
}

.page-terms-conditions__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #1A1A2E;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__article {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 8px;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #E94560;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
    padding-bottom: 10px;
}

.page-terms-conditions__paragraph {
    margin-bottom: 20px;
    color: #f0f0f0;
}

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

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

    .page-terms-conditions__main-title {
        font-size: 2.2em;
    }

    .page-terms-conditions__intro-text {
        font-size: 1em;
    }

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

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

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

    .page-terms-conditions__image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__main-title {
        font-size: 1.8em;
    }

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

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