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

.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, #CC0000 0%, #660000 100%);
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    flex-wrap: wrap;
}

.page-download-center-app-features__hero-content {
    max-width: 600px;
}

.page-download-center-app-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

.page-download-center-app-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

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

.page-download-center-app-features__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #333333;
    border: 2px solid #FFD700;
}

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

.page-download-center-app-features__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-download-center-app-features__btn--text {
    color: #CC0000;
    font-weight: bold;
    text-decoration: underline;
    padding: 0;
    border: none;
    background: none;
    font-size: 1em;
}

.page-download-center-app-features__btn--text:hover {
    color: #990000;
    text-decoration: none;
    transform: none;
}

.page-download-center-app-features__hero-image {
    flex-shrink: 0;
}

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

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

.page-download-center-app-features__section--overview {
    background-color: #ffffff;
}

.page-download-center-app-features__section--details {
    background-color: #f9f9f9;
}

.page-download-center-app-features__section--cta {
    background-color: #333333;
    color: #ffffff;
}

.page-download-center-app-features__section--faq {
    background-color: #ffffff;
}

.page-download-center-app-features__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #CC0000;
    font-weight: bold;
}

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

.page-download-center-app-features__section-description {
    font-size: 1.1em;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-download-center-app-features__section--cta .page-download-center-app-features__section-description {
    color: #e0e0e0;
}

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

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

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

.page-download-center-app-features__feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-download-center-app-features__feature-item h3 {
    font-size: 1.5em;
    color: #CC0000;
    margin-bottom: 15px;
}

.page-download-center-app-features__feature-item p {
    color: #555555;
}

.page-download-center-app-features__feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    text-align: left;
    flex-wrap: wrap;
}

.page-download-center-app-features__feature-row:last-of-type {
    margin-bottom: 0;
}

.page-download-center-app-features__feature-row--reverse {
    flex-direction: row-reverse;
}

.page-download-center-app-features__feature-text {
    flex: 1;
    min-width: 300px;
}

.page-download-center-app-features__feature-text h3 {
    font-size: 2em;
    color: #CC0000;
    margin-bottom: 20px;
}

.page-download-center-app-features__feature-text p {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 25px;
}

.page-download-center-app-features__feature-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-download-center-app-features__cta-content {
    padding: 60px 20px;
}

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

.page-download-center-app-features__faq-item {
    background-color: #f0f0f0;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.page-download-center-app-features__faq-item h3 {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 10px;
}

.page-download-center-app-features__faq-item p {
    font-size: 1em;
    color: #555555;
}

.page-download-center-app-features__faq-item p a {
    color: #CC0000;
    text-decoration: none;
    font-weight: bold;
}

.page-download-center-app-features__faq-item p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-app-features__hero {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-download-center-app-features__hero-title {
        font-size: 2.5em;
    }

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

    .page-download-center-app-features__feature-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .page-download-center-app-features__feature-row--reverse {
        flex-direction: column;
    }

    .page-download-center-app-features__feature-text,
    .page-download-center-app-features__feature-image {
        min-width: unset;
        width: 100%;
    }

    .page-download-center-app-features__feature-text h3 {
        font-size: 1.8em;
    }
}

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

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

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

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

    .page-download-center-app-features__hero-actions,
    .page-download-center-app-features__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features__hero-image img {
        max-width: 250px;
    }

    .page-download-center-app-features__feature-item {
        padding: 20px;
    }

    .page-download-center-app-features__feature-item h3 {
        font-size: 1.3em;
    }
}