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

.page-download-center-app-features-overview {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-download-center-app-features-overview__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-download-center-app-features-overview__section:nth-of-type(even) {
    background-color: #f0f5fa; /* Light blueish grey to break up sections */
}

.page-download-center-app-features-overview__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-app-features-overview__section-intro {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-download-center-app-features-overview__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-download-center-app-features-overview__hero .page-download-center-app-features-overview__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-download-center-app-features-overview__hero-content {
    max-width: 700px;
}

.page-download-center-app-features-overview__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00; /* Gold for title on dark background */
}

.page-download-center-app-features-overview__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-download-center-app-features-overview__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-download-center-app-features-overview__btn--primary {
    background-color: #FFCC00;
    color: #003366; /* Dark blue text on gold button */
}

.page-download-center-app-features-overview__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features-overview__btn--secondary {
    background-color: #003366;
    color: #fff;
    border: 2px solid #003366;
}

.page-download-center-app-features-overview__btn--secondary:hover {
    background-color: #004d99;
    color: #FFCC00;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features-overview__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-download-center-app-features-overview__hero-image-wrapper {
    margin-top: 40px;
}

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

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

.page-download-center-app-features-overview__feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-app-features-overview__feature-card: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;
    filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.3));
}

.page-download-center-app-features-overview__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center-app-features-overview__feature-detail {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-download-center-app-features-overview__feature-detail:last-of-type {
    margin-bottom: 0;
}

.page-download-center-app-features-overview__feature-detail--reverse {
    flex-direction: row-reverse;
}

.page-download-center-app-features-overview__feature-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    height: auto;
}

.page-download-center-app-features-overview__feature-detail-content {
    flex: 1;
    min-width: 300px;
}

.page-download-center-app-features-overview__detail-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 20px;
}

.page-download-center-app-features-overview__feature-detail-content p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #444;
}

.page-download-center-app-features-overview__feature-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-download-center-app-features-overview__feature-detail-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.page-download-center-app-features-overview__feature-detail-content ul li::before {
    content: '✓';
    color: #FFCC00;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-download-center-app-features-overview__highlight-text {
    color: #003366;
}

.page-download-center-app-features-overview__cta-block {
    background-color: #003366;
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features-overview__cta-title {
    font-size: 2.2em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-download-center-app-features-overview__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.page-download-center-app-features-overview__step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-download-center-app-features-overview__step-number {
    background-color: #FFCC00;
    color: #003366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px;
    border: 3px solid #003366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features-overview__step-card .page-download-center-app-features-overview__card-title {
    margin-top: 0;
}

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

.page-download-center-app-features-overview__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

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

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

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

.page-download-center-app-features-overview__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-top: 0;
}

.page-download-center-app-features-overview__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-download-center-app-features-overview__final-cta-content {
    text-align: center;
    padding: 80px 15px;
    background: linear-gradient(135deg, #003366, #004d99);
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features-overview__final-cta-title {
    font-size: 3em;
    color: #FFCC00;
    margin-bottom: 20px;
}

.page-download-center-app-features-overview__final-cta-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-download-center-app-features-overview__final-cta-content .page-download-center-app-features-overview__btn {
    margin: 0 15px;
}

/* Floating CTA */
.page-download-center-app-features-overview__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.page-download-center-app-features-overview__floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-download-center-app-features-overview__floating-btn {
    display: flex;
    align-items: center;
    background-color: #FFCC00;
    color: #003366;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-download-center-app-features-overview__floating-btn:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-download-center-app-features-overview__floating-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 51, 102, 0.3));
}

.page-download-center-app-features-overview__floating-text {
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-center-app-features-overview__hero .page-download-center-app-features-overview__container {
        flex-direction: column;
    }

    .page-download-center-app-features-overview__hero-title {
        font-size: 2.8em;
    }

    .page-download-center-app-features-overview__hero-description {
        font-size: 1.1em;
    }

    .page-download-center-app-features-overview__feature-detail {
        flex-direction: column;
        text-align: center;
    }

    .page-download-center-app-features-overview__feature-detail--reverse {
        flex-direction: column;
    }

    .page-download-center-app-features-overview__feature-detail-image {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .page-download-center-app-features-overview__detail-title {
        font-size: 1.8em;
    }

    .page-download-center-app-features-overview__download-steps {
        grid-template-columns: 1fr;
    }

    .page-download-center-app-features-overview__final-cta-title {
        font-size: 2.5em;
    }
}

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

    .page-download-center-app-features-overview__hero {
        padding: 80px 0;
    }

    .page-download-center-app-features-overview__hero-title {
        font-size: 2.2em;
    }

    .page-download-center-app-features-overview__hero-description {
        font-size: 1em;
    }

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

    .page-download-center-app-features-overview__final-cta-content .page-download-center-app-features-overview__btn {
        margin: 10px 0;
        display: block;
    }

    .page-download-center-app-features-overview__floating-cta {
        bottom: 15px;
        right: 15px;
    }

    .page-download-center-app-features-overview__floating-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .page-download-center-app-features-overview__floating-icon {
        width: 25px;
        height: 25px;
    }
}

@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.8em;
    }

    .page-download-center-app-features-overview__detail-title {
        font-size: 1.5em;
    }

    .page-download-center-app-features-overview__final-cta-title {
        font-size: 2em;
    }
}