/* style/index-mobile-app-features.css */
.page-index-mobile-app-features {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #0F1A2C; /* Slightly lighter dark blue for overall background */
    line-height: 1.6;
}

.page-index-mobile-app-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-mobile-app-features__section-title {
    font-size: 2.5em;
    color: #F0B90B; /* Accent color for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: 700;
}

.page-index-mobile-app-features__section-description {
    font-size: 1.1em;
    color: #B0B0B0; /* Slightly darker light grey for descriptions */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-index-mobile-app-features__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-index-mobile-app-features__button--primary {
    background-color: #F0B90B; /* Accent color for primary buttons */
    color: #1A2B4C; /* Dark text for primary button */
}

.page-index-mobile-app-features__button--primary:hover {
    background-color: #e5a80a;
    transform: translateY(-2px);
}

.page-index-mobile-app-features__button--secondary {
    background-color: transparent;
    color: #F0B90B; /* Accent color for secondary button text */
    border: 2px solid #F0B90B;
    margin-left: 20px;
}

.page-index-mobile-app-features__button--secondary:hover {
    background-color: rgba(240, 185, 11, 0.1);
    transform: translateY(-2px);
}

.page-index-mobile-app-features__button--large {
    padding: 18px 36px;
    font-size: 1.2em;
}

/* Hero Section */
.page-index-mobile-app-features__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #0F1A2C); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-index-mobile-app-features__hero-section .page-index-mobile-app-features__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-index-mobile-app-features__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-index-mobile-app-features__hero-title {
    font-size: 3.8em;
    color: #F0B90B; /* Accent color for hero title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-index-mobile-app-features__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 600px;
}

.page-index-mobile-app-features__hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.page-index-mobile-app-features__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-mobile-app-features__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Overview Section */
.page-index-mobile-app-features__features-overview-section {
    background-color: #1A2B4C; /* Main color for this section */
    padding: 80px 0;
}

.page-index-mobile-app-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-mobile-app-features__feature-card {
    background-color: #0F1A2C; /* Darker background for cards */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mobile-app-features__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-index-mobile-app-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-mobile-app-features__feature-title {
    font-size: 1.8em;
    color: #F0B90B; /* Accent color for feature titles */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-index-mobile-app-features__feature-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Core Features Section */
.page-index-mobile-app-features__core-features-section {
    padding: 80px 0;
    background-color: #0F1A2C;
}

.page-index-mobile-app-features__feature-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.page-index-mobile-app-features__feature-item:last-child {
    margin-bottom: 0;
}

.page-index-mobile-app-features__feature-item--reverse {
    flex-direction: row-reverse;
}

.page-index-mobile-app-features__feature-text-content {
    flex: 1;
    min-width: 300px;
}

.page-index-mobile-app-features__feature-item-title {
    font-size: 2.2em;
    color: #F0B90B;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index-mobile-app-features__feature-item-description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-index-mobile-app-features__feature-item-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-mobile-app-features__feature-item-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Download Guide Section */
.page-index-mobile-app-features__download-guide-section {
    background-color: #1A2B4C;
    padding: 80px 0;
}

.page-index-mobile-app-features__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-index-mobile-app-features__step-card {
    background-color: #0F1A2C;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-mobile-app-features__step-number {
    font-size: 2.5em;
    font-weight: 800;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-index-mobile-app-features__step-title {
    font-size: 1.6em;
    color: #E0E0E0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-index-mobile-app-features__step-text {
    font-size: 0.95em;
    color: #B0B0B0;
}

.page-index-mobile-app-features__download-buttons {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-index-mobile-app-features__qr-code-wrapper {
    text-align: center;
    margin-top: 60px;
}

.page-index-mobile-app-features__qr-code {
    width: 200px;
    height: 200px;
    border: 5px solid #F0B90B;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-index-mobile-app-features__qr-code-text {
    margin-top: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

/* Security Section */
.page-index-mobile-app-features__security-section {
    padding: 80px 0;
    background-color: #0F1A2C;
}

.page-index-mobile-app-features__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-mobile-app-features__security-item {
    background-color: #1A2B4C;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-mobile-app-features__security-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-mobile-app-features__security-item-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-index-mobile-app-features__security-item-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Promotions Section */
.page-index-mobile-app-features__promotions-section {
    background-color: #1A2B4C;
    padding: 80px 0;
}

.page-index-mobile-app-features__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-mobile-app-features__promo-card {
    background-color: #0F1A2C;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-mobile-app-features__promo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-mobile-app-features__promo-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-index-mobile-app-features__promo-text {
    font-size: 1em;
    color: #B0B0B0;
}

.page-index-mobile-app-features__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* FAQ Section */
.page-index-mobile-app-features__faq-section {
    padding: 80px 0;
    background-color: #0F1A2C;
}

.page-index-mobile-app-features__faq-item {
    background-color: #1A2B4C;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-mobile-app-features__faq-question {
    font-size: 1.4em;
    color: #F0B90B;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 30px;
}

.page-index-mobile-app-features__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-index-mobile-app-features__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-mobile-app-features__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-index-mobile-app-features__faq-answer.show {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Final CTA Section */
.page-index-mobile-app-features__cta-final-section {
    background: linear-gradient(135deg, #1A2B4C, #F0B90B); /* Gradient background */
    padding: 100px 0;
    text-align: center;
}

.page-index-mobile-app-features__cta-final-section .page-index-mobile-app-features__section-title {
    color: #1A2B4C; /* Dark text on lighter background */
    margin-bottom: 25px;
}

.page-index-mobile-app-features__cta-final-section .page-index-mobile-app-features__section-description {
    color: #333; /* Darker text for contrast */
    margin-bottom: 40px;
}

.page-index-mobile-app-features__cta-final-section .page-index-mobile-app-features__button--primary {
    background-color: #1A2B4C;
    color: #F0B90B;
    border: 2px solid #1A2B4C;
}

.page-index-mobile-app-features__cta-final-section .page-index-mobile-app-features__button--primary:hover {
    background-color: #0F1A2C;
    border-color: #0F1A2C;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-mobile-app-features__hero-section .page-index-mobile-app-features__container {
        flex-direction: column;
        text-align: center;
    }

    .page-index-mobile-app-features__hero-content {
        text-align: center;
    }

    .page-index-mobile-app-features__hero-title {
        font-size: 3em;
    }

    .page-index-mobile-app-features__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-mobile-app-features__hero-ctas {
        justify-content: center;
    }

    .page-index-mobile-app-features__feature-item {
        flex-direction: column;
        text-align: center;
    }

    .page-index-mobile-app-features__feature-item--reverse {
        flex-direction: column;
    }

    .page-index-mobile-app-features__feature-text-content,
    .page-index-mobile-app-features__feature-item-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-index-mobile-app-features__section-title {
        font-size: 2em;
    }

    .page-index-mobile-app-features__hero-title {
        font-size: 2.5em;
    }

    .page-index-mobile-app-features__button {
        padding: 12px 24px;
        font-size: 1em;
    }

    .page-index-mobile-app-features__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-mobile-app-features__hero-title {
        font-size: 2em;
    }

    .page-index-mobile-app-features__hero-subtitle {
        font-size: 1em;
    }

    .page-index-mobile-app-features__button--large {
        padding: 14px 28px;
        font-size: 1.1em;
    }

    .page-index-mobile-app-features__hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .page-index-mobile-app-features__button--secondary {
        margin-left: 0;
    }
}