/* style/terms-conditions.css */
:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-light: #e0e0e0;
    --bg-light: #f9f9f9;
    --dark-bg-1: #0d0d0d; /* Assuming this is a dark background from shared.css */
}

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default to light text for potentially dark body background */
    background-color: var(--dark-bg-1);
}

/* Ensure main content has padding to clear fixed header */
.page-terms-conditions__hero-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 120px; /* Desktop: Adjust based on fixed header height */
    background: linear-gradient(135deg, var(--primary-color), #0056b3); /* Darker blue gradient */
    color: var(--text-light);
    box-sizing: border-box;
}

.page-terms-conditions__hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-light);
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-light);
}

.page-terms-conditions__hero-image {
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-terms-conditions__content-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    box-sizing: border-box;
}

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

.page-terms-conditions__card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-terms-conditions__section-title {
    font-size: 2em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 10px;
}

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

.page-terms-conditions__sub-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.page-terms-conditions ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

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

.page-terms-conditions__link-primary {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link-primary:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-terms-conditions__content-image, .page-terms-conditions__content-image-2, .page-terms-conditions__content-image-3 {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* FAQ Section */
.page-terms-conditions__faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    box-sizing: border-box;
}

.page-terms-conditions__faq-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-terms-conditions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-terms-conditions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-terms-conditions__faq-item.active .page-terms-conditions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--text-dark);
}

.page-terms-conditions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-terms-conditions__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-terms-conditions__faq-question:active {
    background: #eeeeee;
}

.page-terms-conditions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-dark);
}

.page-terms-conditions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-terms-conditions__faq-item.active .page-terms-conditions__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Change + to X */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-terms-conditions__hero-title {
        font-size: 2.8em;
    }
    .page-terms-conditions__hero-description {
        font-size: 1.1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.3em;
    }
    .page-terms-conditions__faq-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero-banner {
        padding-top: 100px !important; /* Mobile: Adjust based on mobile fixed header height */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-terms-conditions__hero-title {
        font-size: 2.2em;
    }
    .page-terms-conditions__hero-description {
        font-size: 1em;
    }
    .page-terms-conditions__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: 0;
        margin-right: 0;
        border-radius: 8px;
    }
    .page-terms-conditions__content-section,
    .page-terms-conditions__faq-section {
        padding: 40px 15px;
    }
    .page-terms-conditions__container,
    .page-terms-conditions__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-terms-conditions__card {
        padding: 25px;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
        margin-top: 30px;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.2em;
    }
    .page-terms-conditions p,
    .page-terms-conditions ul,
    .page-terms-conditions li {
        font-size: 0.95em;
    }
    .page-terms-conditions__content-image,
    .page-terms-conditions__content-image-2,
    .page-terms-conditions__content-image-3 {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: 0;
        margin-right: 0;
    }
    .page-terms-conditions__faq-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-terms-conditions__faq-question h3 {
        font-size: 1em;
        width: calc(100% - 40px);
    }
    .page-terms-conditions__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-terms-conditions__faq-answer {
        padding: 0 15px;
    }
    .page-terms-conditions__faq-item.active .page-terms-conditions__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__hero-description {
        font-size: 0.9em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.3em;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.1em;
    }
    .page-terms-conditions__card {
        padding: 20px;
    }
    .page-terms-conditions__faq-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__faq-question h3 {
        font-size: 0.95em;
    }
}