/* style/index-security-fairness-guarantee.css */

/* Base styles for the page content */
.page-index-security-fairness-guarantee {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-index-security-fairness-guarantee__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-index-security-fairness-guarantee__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-index-security-fairness-guarantee__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-index-security-fairness-guarantee__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: 2;
}

.page-index-security-fairness-guarantee__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
    color: #ffffff;
}

.page-index-security-fairness-guarantee__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #26A9E0; /* Brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-security-fairness-guarantee__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Video Section */
.page-index-security-fairness-guarantee__video-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.page-index-security-fairness-guarantee__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px; /* Max width for the video */
    margin: 30px auto;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-index-security-fairness-guarantee__video-link-overlay {
    display: block;
    position: relative;
    cursor: pointer;
}

.page-index-security-fairness-guarantee__video {
    width: 100%;
    height: auto;
    display: block;
}

.page-index-security-fairness-guarantee__video-description {
    font-size: 1.1em;
    margin-top: 20px;
    color: #cccccc;
}

/* General Content Sections */
.page-index-security-fairness-guarantee__content-section {
    padding: 60px 0;
    color: #ffffff; /* Default light text */
}

.page-index-security-fairness-guarantee__content-section.page-index-security-fairness-guarantee__dark-bg {
    background-color: #1a1a1a; /* Slightly darker background for contrast */
}

.page-index-security-fairness-guarantee__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-security-fairness-guarantee__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-index-security-fairness-guarantee p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0; /* Slightly off-white for body text */
}

.page-index-security-fairness-guarantee__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Call to Action Buttons */
.page-index-security-fairness-guarantee__cta-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    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;
    border: none;
    cursor: pointer;
}

.page-index-security-fairness-guarantee__cta-button:hover {
    background-color: #1e87b7;
    transform: translateY(-2px);
}

/* CTA Section */
.page-index-security-fairness-guarantee__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0d0d0d; /* Dark background for CTA */
    color: #ffffff;
}

.page-index-security-fairness-guarantee__cta-content {
    max-width: 900px;
}

.page-index-security-fairness-guarantee__cta-title {
    font-size: 2.8em;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-security-fairness-guarantee__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-index-security-fairness-guarantee__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-index-security-fairness-guarantee__btn-primary,
.page-index-security-fairness-guarantee__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.page-index-security-fairness-guarantee__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-index-security-fairness-guarantee__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
    transform: translateY(-2px);
}

.page-index-security-fairness-guarantee__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-index-security-fairness-guarantee__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-index-security-fairness-guarantee__faq-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-index-security-fairness-guarantee__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-index-security-fairness-guarantee__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.page-index-security-fairness-guarantee__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #3a3a3a;
    color: #26A9E0; /* Brand color for FAQ question */
    border-bottom: 1px solid #4a4a4a;
    transition: background-color 0.3s ease;
}

.page-index-security-fairness-guarantee__faq-question:hover {
    background-color: #4a4a4a;
}

.page-index-security-fairness-guarantee__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-index-security-fairness-guarantee__faq-item[open] > .page-index-security-fairness-guarantee__faq-question {
    background-color: #4a4a4a;
}

.page-index-security-fairness-guarantee__faq-item[open] > .page-index-security-fairness-guarantee__faq-question .page-index-security-fairness-guarantee__faq-toggle {
    content: '−';
}

.page-index-security-fairness-guarantee__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1.05em;
    color: #e0e0e0;
}

/* Hide default details marker */
.page-index-security-fairness-guarantee__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-index-security-fairness-guarantee__faq-item summary {
    list-style: none;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-security-fairness-guarantee__hero-title {
        font-size: 2.8em;
    }
    .page-index-security-fairness-guarantee__hero-description {
        font-size: 1.15em;
    }
    .page-index-security-fairness-guarantee__section-title {
        font-size: 2.2em;
    }
    .page-index-security-fairness-guarantee__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    /* General mobile padding */
    .page-index-security-fairness-guarantee__container {
        padding: 0 15px;
    }

    /* Hero Section */
    .page-index-security-fairness-guarantee__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-index-security-fairness-guarantee__hero-title {
        font-size: 2.2em;
    }
    .page-index-security-fairness-guarantee__hero-description {
        font-size: 1em;
    }
    .page-index-security-fairness-guarantee__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Section titles */
    .page-index-security-fairness-guarantee__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Paragraphs */
    .page-index-security-fairness-guarantee p {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-index-security-fairness-guarantee img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-index-security-fairness-guarantee__section,
    .page-index-security-fairness-guarantee__card,
    .page-index-security-fairness-guarantee__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-security-fairness-guarantee__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Important for video section */
    }

    /* Video responsiveness */
    .page-index-security-fairness-guarantee video,
    .page-index-security-fairness-guarantee__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-index-security-fairness-guarantee__video-section,
    .page-index-security-fairness-guarantee__video-container,
    .page-index-security-fairness-guarantee__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-index-security-fairness-guarantee__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* CTA Section Mobile */
    .page-index-security-fairness-guarantee__cta-title {
        font-size: 2em;
    }
    .page-index-security-fairness-guarantee__cta-description {
        font-size: 1.1em;
    }
    .page-index-security-fairness-guarantee__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }
    .page-index-security-fairness-guarantee__btn-primary,
    .page-index-security-fairness-guarantee__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-security-fairness-guarantee__cta-buttons,
    .page-index-security-fairness-guarantee__button-group,
    .page-index-security-fairness-guarantee__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    /* FAQ Section Mobile */
    .page-index-security-fairness-guarantee__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-index-security-fairness-guarantee__faq-answer {
        font-size: 1em;
        padding: 10px 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-index-security-fairness-guarantee__hero-section {
        height: 400px;
    }
    .page-index-security-fairness-guarantee__hero-title {
        font-size: 1.8em;
    }
    .page-index-security-fairness-guarantee__hero-description {
        font-size: 0.9em;
    }
    .page-index-security-fairness-guarantee__section-title {
        font-size: 1.6em;
    }
    .page-index-security-fairness-guarantee__cta-title {
        font-size: 1.8em;
    }
}