.page-app-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F3F8FF); /* Default text color for dark body background */
    background-color: var(--deep-navy, #08162B); /* Ensure body background is respected implicitly */
}

.page-app-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
    text-align: center;
    background-color: var(--deep-navy, #08162B); /* Explicitly set for this section if needed */
}

.page-app-features__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 30px;
    position: relative;
}

.page-app-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-app-features__hero-content {
    max-width: 900px;
    color: var(--text-main, #F3F8FF);
    z-index: 1;
}

.page-app-features__main-title {
    font-size: clamp(2.2em, 5vw, 3.5em);
    color: var(--gold, #F2C14E);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-app-features__description {
    font-size: 1.2em;
    color: var(--text-secondary, #AFC4E8);
    margin-bottom: 30px;
}

.page-app-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-app-features__cta-buttons--center {
    margin-top: 40px;
}

.page-app-features__btn-primary,
.page-app-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-app-features__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-app-features__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-app-features__btn-secondary {
    background-color: transparent;
    color: var(--gold, #F2C14E);
    border: 2px solid var(--gold, #F2C14E);
}

.page-app-features__btn-secondary:hover {
    background-color: var(--gold, #F2C14E);
    color: var(--deep-navy, #08162B);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-app-features__features-overview-section,
.page-app-features__download-guide-section,
.page-app-features__conclusion-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--deep-navy, #08162B);
    color: var(--text-main, #F3F8FF);
}

.page-app-features__benefits-section,
.page-app-features__faq-section {
    padding: 80px 20px;
    background-color: var(--card-bg, #10233F); /* Card BG color */
    color: var(--text-main, #F3F8FF);
    text-align: center;
}

.page-app-features__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    color: var(--gold, #F2C14E);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-app-features__section-intro-text {
    font-size: 1.1em;
    color: var(--text-secondary, #AFC4E8);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-features__feature-grid,
.page-app-features__benefits-grid,
.page-app-features__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-features__feature-card,
.page-app-features__benefit-item {
    background-color: var(--card-bg, #10233F);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border, #244D84);
}

.page-app-features__feature-card-image,
.page-app-features__guide-step-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 200px;
}

.page-app-features__feature-card-title,
.page-app-features__benefit-title,
.page-app-features__guide-step-title {
    font-size: 1.5em;
    color: var(--text-main, #F3F8FF);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-features__feature-card-text,
.page-app-features__benefit-text,
.page-app-features__guide-step-text {
    font-size: 1em;
    color: var(--text-secondary, #AFC4E8);
}

/* FAQ Section */
.page-app-features__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-app-features__faq-item {
    background-color: var(--deep-navy, #08162B);
    border: 1px solid var(--border, #244D84);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main, #F3F8FF);
}

.page-app-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--gold, #F2C14E);
    background-color: var(--card-bg, #10233F);
    border-bottom: 1px solid var(--divider, #1B3357);
}

.page-app-features__faq-item[open] .page-app-features__faq-question {
    border-bottom: 1px solid var(--border, #244D84);
}

.page-app-features__faq-question::-webkit-details-marker {
    display: none;
}
.page-app-features__faq-question::marker {
    display: none;
}

.page-app-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-app-features__faq-item[open] .page-app-features__faq-toggle {
    transform: rotate(45deg);
}

.page-app-features__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary, #AFC4E8);
}

.page-app-features__faq-answer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-app-features {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-app-features__hero-section {
        padding: 10px 15px 40px;
    }

    .page-app-features__main-title {
        font-size: clamp(2em, 8vw, 2.5em);
    }

    .page-app-features__description {
        font-size: 1em;
    }

    .page-app-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-app-features__btn-primary,
    .page-app-features__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-app-features__features-overview-section,
    .page-app-features__benefits-section,
    .page-app-features__download-guide-section,
    .page-app-features__faq-section,
    .page-app-features__conclusion-section {
        padding: 50px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-app-features__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
    }

    .page-app-features__section-intro-text {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-app-features__feature-grid,
    .page-app-features__benefits-grid,
    .page-app-features__guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .page-app-features__feature-card,
    .page-app-features__benefit-item {
        padding: 25px;
    }

    .page-app-features__feature-card-image,
    .page-app-features__guide-step-image,
    .page-app-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-app-features video,
    .page-app-features__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-app-features__video-section,
    .page-app-features__video-container,
    .page-app-features__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-app-features__video-section {
        padding-top: 10px !important;
    }

    .page-app-features__faq-list {
        padding: 0 15px;
    }

    .page-app-features__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-app-features__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}

:root {
    --main-color: #113B7A;
    --accent-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border: #244D84;
    --glow: #4FA8FF;
    --gold: #F2C14E;
    --divider: #1B3357;
    --deep-navy: #08162B;
}

.page-app-features__contrast-fix {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
}

.page-app-features__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
}