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

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

.page-download-center-app-features__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-app-features__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff; /* High contrast with #007bff background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9); /* High contrast with #007bff background */
}

.page-download-center-app-features__hero-cta {
    margin-bottom: 40px;
}

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

.page-download-center-app-features__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #333; /* High contrast with #ffc107 background */
    border: 2px solid #ffc107;
}

.page-download-center-app-features__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-download-center-app-features__btn--secondary {
    background-color: transparent;
    color: #fff; /* High contrast with #007bff background */
    border: 2px solid #fff;
}

.page-download-center-app-features__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.page-download-center-app-features__hero-image {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-center-app-features__section--why-choose {
    background-color: #fff;
}

.page-download-center-app-features__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #007bff; /* Primary color for titles */
    font-weight: bold;
}

.page-download-center-app-features__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555; /* Good contrast with white background */
}

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

.page-download-center-app-features__grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-features__section--features {
    background-color: #e9f5ff; /* Lighter shade of blue for background */
}

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

.page-download-center-app-features__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-download-center-app-features__feature-item:hover {
    transform: translateY(-5px);
}

.page-download-center-app-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #007bff; /* Primary color for icons */
}

.page-download-center-app-features__feature-heading {
    font-size: 1.5em;
    color: #007bff; /* Primary color for headings */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-app-features__feature-text {
    color: #666; /* Good contrast with white background */
}

.page-download-center-app-features__section--download-guide {
    background-color: #f0f8ff; /* Another light blue shade */
    padding-bottom: 80px;
}

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

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

.page-download-center-app-features__step-heading {
    font-size: 1.6em;
    color: #ffc107; /* Auxiliary color for step headings */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-app-features__step-text {
    color: #666; /* Good contrast with white background */
    margin-bottom: 20px;
}

.page-download-center-app-features__qr-code-image {
    width: 150px;
    height: 150px;
    border: 5px solid #007bff; /* Primary color border */
    border-radius: 5px;
    display: block;
    margin: 20px auto 0;
}

.page-download-center-app-features__download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.page-download-center-app-features__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.page-download-center-app-features__section--benefits {
    background-color: #fff;
}

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

.page-download-center-app-features__benefit-list li {
    background-color: #f0f8ff; /* Light blue background for list items */
    margin-bottom: 15px;
    padding: 15px 25px;
    border-left: 5px solid #007bff; /* Primary color for accent */
    border-radius: 5px;
    font-size: 1.05em;
    color: #333; /* Good contrast with light blue background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-download-center-app-features__benefit-list li strong {
    color: #0056b3; /* Darker blue for emphasis */
}

.page-download-center-app-features__benefit-image {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.page-download-center-app-features__section--faq {
    background-color: #e9f5ff; /* Light blue background */
}

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

.page-download-center-app-features__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-download-center-app-features__faq-question {
    font-size: 1.3em;
    color: #007bff; /* Primary color for questions */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center-app-features__faq-answer {
    color: #555; /* Good contrast with white background */
}

.page-download-center-app-features__cta-section {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%); /* Auxiliary color gradient */
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.page-download-center-app-features__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333; /* High contrast with #ffc107 background */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-download-center-app-features__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555; /* Good contrast with #ffc107 background */
}

.page-download-center-app-features__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-download-center-app-features__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-app-features__hero-subtitle {
        font-size: 1em;
    }
    .page-download-center-app-features__section-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features__feature-grid, 
    .page-download-center-app-features__download-steps, 
    .page-download-center-app-features__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center-app-features__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-download-center-app-features__hero-image {
        max-width: 300px;
    }
    .page-download-center-app-features__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features__btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-download-center-app-features__btn--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .page-download-center-app-features__section {
        padding: 40px 0;
    }
}