/* style/download-center-app-features.css */
.page-download-center-app-features {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2239; /* Deep blue main background */
    line-height: 1.6;
}

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

.page-download-center-app-features__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1A3B58 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-download-center-app-features__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-app-features__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #CCCCCC;
}

.page-download-center-app-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-download-center-app-features__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text */
}

.page-download-center-app-features__btn--primary:hover {
    background-color: #E0B300; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-download-center-app-features__btn--secondary {
    background-color: #0A2239; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-download-center-app-features__btn--secondary:hover {
    background-color: #1A3B58; /* Slightly lighter blue on hover */
    transform: translateY(-3px);
}

.page-download-center-app-features__btn--ghost {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-download-center-app-features__btn--ghost:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-download-center-app-features__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-download-center-app-features__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 60px;
}

.page-download-center-app-features__section-description {
    font-size: 1.1em;
    color: #CCCCCC;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.page-download-center-app-features__features-overview,
.page-download-center-app-features__benefits,
.page-download-center-app-features__download-guide,
.page-download-center-app-features__why-lc88,
.page-download-center-app-features__faq,
.page-download-center-app-features__final-cta {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-center-app-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-app-features__feature-item {
    background-color: #1A3B58; /* Darker blue for feature cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-app-features__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-download-center-app-features__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download-center-app-features__feature-heading {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-download-center-app-features__feature-text {
    font-size: 1em;
    color: #E0E0E0;
}

.page-download-center-app-features__benefit-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-download-center-app-features__benefit-list li {
    background-color: #1A3B58;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__benefit-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
}

.page-download-center-app-features__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-download-center-app-features__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-app-features__step-item {
    background-color: #1A3B58;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__step-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-download-center-app-features__step-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-download-center-app-features__step-text {
    font-size: 1em;
    color: #E0E0E0;
}

.page-download-center-app-features__qr-codes {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-download-center-app-features__qr-item {
    text-align: center;
}

.page-download-center-app-features__qr-image {
    width: 180px;
    height: 180px;
    border: 5px solid #FFD700;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-download-center-app-features__qr-label {
    font-size: 1.1em;
    color: #FFD700;
    font-weight: bold;
}

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

.page-download-center-app-features__why-item {
    background-color: #1A3B58;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-download-center-app-features__why-heading {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-download-center-app-features__why-text {
    font-size: 0.95em;
    color: #E0E0E0;
}

.page-download-center-app-features__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-app-features__faq-item {
    background-color: #1A3B58;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__faq-question {
    font-size: 1.25em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center-app-features__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-download-center-app-features__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center-app-features__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
}

.page-download-center-app-features__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-download-center-app-features__final-cta {
    text-align: center;
    padding: 80px 0;
    background-color: #0A2239;
}

.page-download-center-app-features__final-cta .page-download-center-app-features__section-title {
    color: #FFD700;
}

.page-download-center-app-features__final-cta .page-download-center-app-features__subtitle {
    margin-bottom: 30px;
}

.page-download-center-app-features__small-text {
    font-size: 0.9em;
    color: #CCCCCC;
    margin-top: 20px;
}

.page-download-center-app-features__link {
    color: #FFD700;
    text-decoration: underline;
}

.page-download-center-app-features__link:hover {
    color: #E0B300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-download-center-app-features__title {
        font-size: 2.8em;
    }
    .page-download-center-app-features__section-title {
        font-size: 2em;
    }
    .page-download-center-app-features__hero {
        padding: 80px 0;
    }
    .page-download-center-app-features__feature-grid, 
    .page-download-center-app-features__download-steps, 
    .page-download-center-app-features__why-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-download-center-app-features__title {
        font-size: 2.2em;
    }
    .page-download-center-app-features__subtitle {
        font-size: 1.1em;
    }
    .page-download-center-app-features__section-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center-app-features__btn--ghost {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-download-center-app-features__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-download-center-app-features__qr-codes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features__title {
        font-size: 1.8em;
    }
    .page-download-center-app-features__subtitle {
        font-size: 1em;
    }
    .page-download-center-app-features__section-title {
        font-size: 1.5em;
    }
    .page-download-center-app-features__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-download-center-app-features__feature-grid, 
    .page-download-center-app-features__download-steps, 
    .page-download-center-app-features__why-grid {
        gap: 20px;
    }
    .page-download-center-app-features__feature-item, 
    .page-download-center-app-features__step-item, 
    .page-download-center-app-features__why-item {
        padding: 20px;
    }
    .page-download-center-app-features__faq-item {
        padding: 15px;
    }
}