/* style/resources-s666-mobile-security-benefits.css */

/* Base styles for the page content */
.page-resources-s666-mobile-security-benefits {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--black-color, #0d0d0d); /* Assuming shared.css defines --black-color as dark */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-resources-s666-mobile-security-benefits__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    box-sizing: border-box;
}

.page-resources-s666-mobile-security-benefits__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

.page-resources-s666-mobile-security-benefits__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-resources-s666-mobile-security-benefits__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-s666-mobile-security-benefits__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-resources-s666-mobile-security-benefits__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-resources-s666-mobile-security-benefits__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-s666-mobile-security-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-resources-s666-mobile-security-benefits__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Dark background sections */
.page-resources-s666-mobile-security-benefits__dark-bg {
    background-color: var(--black-color, #0d0d0d); /* Ensure dark background */
    color: #ffffff; /* Light text */
}

/* Light background sections */
.page-resources-s666-mobile-security-benefits__light-bg {
    background-color: #ffffff; /* Ensure light background */
    color: #333333; /* Dark text */
}

/* Buttons */
.page-resources-s666-mobile-security-benefits__btn-primary {
    display: inline-block;
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #26A9E0;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-s666-mobile-security-benefits__btn-primary:hover {
    background-color: #1e87b7;
}

.page-resources-s666-mobile-security-benefits__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #26A9E0; /* Main brand color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #26A9E0;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-s666-mobile-security-benefits__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-s666-mobile-security-benefits__btn-download {
    margin-top: 30px;
}

/* Security Features Section */
.page-resources-s666-mobile-security-benefits__security-features-section {
    padding: 60px 0;
}

.page-resources-s666-mobile-security-benefits__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-s666-mobile-security-benefits__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333; /* Dark text for light background */
}

.page-resources-s666-mobile-security-benefits__feature-icon {
    width: 200px; /* Minimum size 200px */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px; /* Slightly rounded corners for images */
}

.page-resources-s666-mobile-security-benefits__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-s666-mobile-security-benefits__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Benefits Section */
.page-resources-s666-mobile-security-benefits__benefits-section {
    padding: 60px 0;
}

.page-resources-s666-mobile-security-benefits__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-s666-mobile-security-benefits__benefit-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff; /* Light text */
}

.page-resources-s666-mobile-security-benefits__benefit-image {
    width: 100%;
    height: auto;
    max-height: 450px; /* Limit height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-resources-s666-mobile-security-benefits__benefit-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-s666-mobile-security-benefits__benefit-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Responsible Gaming Section */
.page-resources-s666-mobile-security-benefits__responsible-gaming-section {
    padding: 60px 0;
}

.page-resources-s666-mobile-security-benefits__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-s666-mobile-security-benefits__responsible-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #333333; /* Dark text for light background */
}

.page-resources-s666-mobile-security-benefits__list-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-resources-s666-mobile-security-benefits__list-description {
    font-size: 1em;
    color: #555555;
}

/* Download Section */
.page-resources-s666-mobile-security-benefits__download-section {
    padding: 60px 0;
}

.page-resources-s666-mobile-security-benefits__download-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-s666-mobile-security-benefits__download-text {
    flex: 1;
    min-width: 300px;
}

.page-resources-s666-mobile-security-benefits__download-steps {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 30px;
    color: #f0f0f0; /* Light text */
}

.page-resources-s666-mobile-security-benefits__download-steps li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-s666-mobile-security-benefits__download-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-resources-s666-mobile-security-benefits__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-resources-s666-mobile-security-benefits__faq-section {
    padding: 60px 0;
}

.page-resources-s666-mobile-security-benefits__faq-list {
    margin-top: 30px;
}

.page-resources-s666-mobile-security-benefits__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333; /* Dark text for light background */
}

.page-resources-s666-mobile-security-benefits__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-resources-s666-mobile-security-benefits__faq-item[open] .page-resources-s666-mobile-security-benefits__faq-question {
    border-bottom: none;
}

.page-resources-s666-mobile-security-benefits__faq-qtext {
    flex-grow: 1;
}

.page-resources-s666-mobile-security-benefits__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-resources-s666-mobile-security-benefits__faq-item[open] .page-resources-s666-mobile-security-benefits__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-s666-mobile-security-benefits__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #555555;
}

.page-resources-s666-mobile-security-benefits__faq-answer p {
    margin: 0;
}

/* CTA Section */
.page-resources-s666-mobile-security-benefits__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-s666-mobile-security-benefits__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-s666-mobile-security-benefits__hero-title {
        font-size: 2.8em;
    }
    .page-resources-s666-mobile-security-benefits__section-title {
        font-size: 2em;
    }
    .page-resources-s666-mobile-security-benefits__feature-item,
    .page-resources-s666-mobile-security-benefits__benefit-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-resources-s666-mobile-security-benefits__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-resources-s666-mobile-security-benefits__hero-title {
        font-size: 2em;
    }
    .page-resources-s666-mobile-security-benefits__hero-description {
        font-size: 1em;
    }
    .page-resources-s666-mobile-security-benefits__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-s666-mobile-security-benefits__container {
        padding: 30px 15px;
    }
    .page-resources-s666-mobile-security-benefits__text-block,
    .page-resources-s666-mobile-security-benefits__download-steps li,
    .page-resources-s666-mobile-security-benefits__feature-description,
    .page-resources-s666-mobile-security-benefits__benefit-description,
    .page-resources-s666-mobile-security-benefits__list-description,
    .page-resources-s666-mobile-security-benefits__faq-answer {
        font-size: 16px; /* Increase base font size for mobile readability */
    }

    /* Images responsiveness */
    .page-resources-s666-mobile-security-benefits img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-s666-mobile-security-benefits__feature-icon {
        width: 100% !important; /* Ensure images in features are fully responsive */
        max-width: 250px !important; /* Cap max width for smaller images to not look stretched */
        margin-left: auto;
        margin-right: auto;
    }
    .page-resources-s666-mobile-security-benefits__benefit-image {
        max-height: 300px !important;
    }

    /* Video responsiveness (if any, though not used in this page) */
    .page-resources-s666-mobile-security-benefits video,
    .page-resources-s666-mobile-security-benefits__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-s666-mobile-security-benefits__video-section,
    .page-resources-s666-mobile-security-benefits__video-container,
    .page-resources-s666-mobile-security-benefits__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-s666-mobile-security-benefits__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Button responsiveness */
    .page-resources-s666-mobile-security-benefits__btn-primary,
    .page-resources-s666-mobile-security-benefits__btn-secondary,
    .page-resources-s666-mobile-security-benefits a[class*="button"],
    .page-resources-s666-mobile-security-benefits a[class*="btn"] {
        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;
        text-align: center; /* Center button text if it wraps */
    }
    .page-resources-s666-mobile-security-benefits__hero-cta-buttons,
    .page-resources-s666-mobile-security-benefits__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-s666-mobile-security-benefits__download-content {
        flex-direction: column;
    }
    .page-resources-s666-mobile-security-benefits__download-image-wrapper {
        padding: 0 15px;
    }
    .page-resources-s666-mobile-security-benefits__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-resources-s666-mobile-security-benefits__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-s666-mobile-security-benefits__hero-title {
        font-size: 1.8em;
    }
    .page-resources-s666-mobile-security-benefits__section-title {
        font-size: 1.5em;
    }
    .page-resources-s666-mobile-security-benefits__feature-title,
    .page-resources-s666-mobile-security-benefits__benefit-title {
        font-size: 1.3em;
    }
}