/* style/download-center-app-features-overview.css */

:root {
    --primary-color: #003366;
    --secondary-color: #FFCC00;
    --text-on-dark: #FFFFFF;
    --text-on-light: #003366;
    --light-bg: #f5f5f5;
    --dark-bg: #002244;
}

.page-download-center-app-features-overview {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--light-bg);
}

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

.page-download-center-app-features-overview .highlight {
    color: var(--secondary-color);
}

.page-download-center-app-features-overview .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
}

.page-download-center-app-features-overview .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-download-center-app-features-overview .btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-download-center-app-features-overview .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-download-center-app-features-overview .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-download-center-app-features-overview .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Hero Section */
.page-download-center-app-features-overview .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: var(--text-on-dark);
    padding: 100px 0;
    text-align: center;
}

.page-download-center-app-features-overview .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-on-dark);
}

.page-download-center-app-features-overview .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

/* General Section Styling */
.page-download-center-app-features-overview .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-download-center-app-features-overview .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-download-center-app-features-overview .section-subtitle {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
}

/* Features Overview Section */
.page-download-center-app-features-overview .features-overview-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

.page-download-center-app-features-overview .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-download-center-app-features-overview .feature-heading {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-download-center-app-features-overview .feature-item p {
    color: #666;
}

/* Experience Section */
.page-download-center-app-features-overview .experience-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-on-dark);
}

.page-download-center-app-features-overview .experience-section .section-title {
    color: var(--text-on-dark);
}

.page-download-center-app-features-overview .experience-section .section-subtitle {
    color: #ccc;
}

.page-download-center-app-features-overview .experience-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-download-center-app-features-overview .experience-content .text-content {
    flex: 1;
    min-width: 300px;
}

.page-download-center-app-features-overview .experience-content .image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-download-center-app-features-overview .experience-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features-overview .content-heading {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-download-center-app-features-overview .experience-section p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-download-center-app-features-overview .cta-banner {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features-overview .cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-download-center-app-features-overview .cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Download Guide Section */
.page-download-center-app-features-overview .download-guide-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.page-download-center-app-features-overview .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-download-center-app-features-overview .step-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-download-center-app-features-overview .step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download-center-app-features-overview .step-heading {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-download-center-app-features-overview .step-item p {
    color: #666;
}

.page-download-center-app-features-overview .cta-download {
    text-align: center;
}

/* FAQ Section */
.page-download-center-app-features-overview .faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-on-dark);
}

.page-download-center-app-features-overview .faq-section .section-title {
    color: var(--text-on-dark);
}

.page-download-center-app-features-overview .faq-item {
    background-color: var(--primary-color);
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features-overview .faq-question {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-download-center-app-features-overview .faq-answer {
    font-size: 1.1em;
    color: #e0e0e0;
    display: none;
    margin-top: 15px;
}

.page-download-center-app-features-overview .faq-item.active .faq-answer {
    display: block;
}

/* Final Call to Action Section */
.page-download-center-app-features-overview .final-cta-section {
    background: linear-gradient(45deg, var(--dark-bg), var(--primary-color));
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
}

.page-download-center-app-features-overview .final-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

.page-download-center-app-features-overview .final-cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-download-center-app-features-overview .final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-app-features-overview .hero-title {
        font-size: 2.5em;
    }
    .page-download-center-app-features-overview .section-title {
        font-size: 2em;
    }
    .page-download-center-app-features-overview .experience-content {
        flex-direction: column;
        text-align: center;
    }
    .page-download-center-app-features-overview .experience-content .image-content {
        order: -1; /* Image appears above text on mobile */
    }
    .page-download-center-app-features-overview .cta-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features-overview .final-cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-download-center-app-features-overview .hero-section,
    .page-download-center-app-features-overview .features-overview-section,
    .page-download-center-app-features-overview .experience-section,
    .page-download-center-app-features-overview .download-guide-section,
    .page-download-center-app-features-overview .faq-section,
    .page-download-center-app-features-overview .final-cta-section {
        padding: 60px 0;
    }
    .page-download-center-app-features-overview .hero-title {
        font-size: 2em;
    }
    .page-download-center-app-features-overview .hero-description {
        font-size: 1em;
    }
    .page-download-center-app-features-overview .hero-actions,
    .page-download-center-app-features-overview .final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-app-features-overview .btn-large {
        width: 80%;
        margin: 0 auto;
    }
    .page-download-center-app-features-overview .section-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features-overview .section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-download-center-app-features-overview .feature-heading,
    .page-download-center-app-features-overview .step-heading {
        font-size: 1.4em;
    }
    .page-download-center-app-features-overview .content-heading {
        font-size: 1.6em;
    }
    .page-download-center-app-features-overview .cta-title {
        font-size: 1.6em;
    }
    .page-download-center-app-features-overview .final-cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features-overview .hero-title {
        font-size: 1.8em;
    }
    .page-download-center-app-features-overview .section-title {
        font-size: 1.6em;
    }
    .page-download-center-app-features-overview .btn-large {
        width: 100%;
    }
    .page-download-center-app-features-overview .feature-item,
    .page-download-center-app-features-overview .step-item {
        padding: 20px;
    }
    .page-download-center-app-features-overview .faq-question {
        font-size: 1.2em;
    }
    .page-download-center-app-features-overview .final-cta-title {
        font-size: 1.6em;
    }
}