/* style/app-download-features.css */
.page-app-download-features {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-app-download-features__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E7A 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Auxiliary color for emphasis */
}

.page-app-download-features__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-features__cta-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-features__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #0A2463; /* Primary color for text */
    border: 2px solid #FFD700;
}

.page-app-download-features__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-app-download-features__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
}

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

.page-app-download-features__hero-image {
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-app-download-features__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-app-download-features__features-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-app-download-features__feature-card {
    background-color: #f0f4f8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A2463;
}

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

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

.page-app-download-features__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-download-features__card-description {
    font-size: 1em;
    color: #666;
}

.page-app-download-features__download-guide {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-app-download-features__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-app-download-features__step-list li {
    background-color: #ffffff;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-app-download-features__step-list li:before {
    content: attr(data-step);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0A2463;
    color: #FFD700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid #FFD700;
}

.page-app-download-features__step-list li:nth-child(1):before { content: '1'; }
.page-app-download-features__step-list li:nth-child(2):before { content: '2'; }
.page-app-download-features__step-list li:nth-child(3):before { content: '3'; }
.page-app-download-features__step-list li:nth-child(4):before { content: '4'; }

.page-app-download-features__step-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-app-download-features__step-list p {
    color: #555;
    margin-bottom: 15px;
}

.page-app-download-features__step-list p a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: none;
}

.page-app-download-features__step-list p a:hover {
    text-decoration: underline;
}

.page-app-download-features__step-image {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-app-download-features__cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-features__why-choose {
    padding: 80px 0;
    background-color: #0A2463;
    color: #ffffff;
}

.page-app-download-features__why-choose .page-app-download-features__section-title {
    color: #FFD700;
}

.page-app-download-features__why-choose .page-app-download-features__section-description {
    color: #e0e0e0;
}

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

.page-app-download-features__benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.page-app-download-features__benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: invert(1) brightness(1.5) sepia(1) saturate(10) hue-rotate(20deg); /* Adjust icon color to match theme */
}

.page-app-download-features__final-cta {
    text-align: center;
    font-size: 1.4em;
    margin-top: 60px;
    font-weight: bold;
    color: #FFD700;
}

.page-app-download-features__final-cta a {
    color: #FFD700;
    text-decoration: underline;
}

.page-app-download-features__final-cta a:hover {
    color: #e6c200;
}

.page-app-download-features .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-app-download-features__hero-title {
        font-size: 2.5em;
    }

    .page-app-download-features__hero-description {
        font-size: 1.1em;
    }

    .page-app-download-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-app-download-features__section-title {
        font-size: 2em;
    }

    .page-app-download-features__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-app-download-features__feature-card {
        padding: 25px;
    }

    .page-app-download-features__card-title {
        font-size: 1.3em;
    }

    .page-app-download-features__step-title {
        font-size: 1.2em;
    }

    .page-app-download-features__benefit-list li {
        font-size: 1em;
    }

    .page-app-download-features__hero-image {
        max-width: 100%;
    }
}

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

    .page-app-download-features__hero-description {
        font-size: 1em;
    }

    .page-app-download-features__cta-group,
    .page-app-download-features__cta-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .page-app-download-features__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-app-download-features__section-title {
        font-size: 1.8em;
    }

    .page-app-download-features__step-list li {
        padding: 20px;
    }

    .page-app-download-features__final-cta {
        font-size: 1.2em;
    }
}