/* style/app-download-installation-faq.css */

.page-app-download-installation-faq {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark sections */
    background-color: #0A2239; /* Main background color */
}

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

.page-app-download-installation-faq__hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #304a60 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-app-download-installation-faq__hero-title .highlight {
    color: #FFD700;
}

.page-app-download-installation-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #E0E0E0;
}

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

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

.page-app-download-installation-faq__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2239; /* Dark blue text */
}

.page-app-download-installation-faq__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-app-download-installation-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-app-download-installation-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-2px);
}

.page-app-download-installation-faq__content-section {
    padding: 60px 0;
    background-color: #0A2239; /* Dark blue background */
}

.page-app-download-installation-faq__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-app-download-installation-faq__section-title .highlight {
    color: #FFD700;
}

.page-app-download-installation-faq__faq-list {
    background-color: #1a3a5a; /* Slightly lighter dark blue for FAQ background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-faq__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
}

.page-app-download-installation-faq__faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.page-app-download-installation-faq__faq-question {
    font-size: 1.5em;
    color: #FFD700; /* Gold for questions */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.page-app-download-installation-faq__faq-question:hover {
    color: #e6c200;
}

.page-app-download-installation-faq__faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-app-download-installation-faq__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-app-download-installation-faq__faq-answer {
    font-size: 1.1em;
    line-height: 1.8;
    color: #D3D3D3; /* Light grey for answers */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-left: 20px;
    padding-right: 20px;
}

.page-app-download-installation-faq__faq-answer.active {
    max-height: 1000px; /* Adjust as needed for content length */
    padding-top: 15px;
    padding-bottom: 15px;
}

.page-app-download-installation-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-app-download-installation-faq__faq-answer ul,
.page-app-download-installation-faq__faq-answer ol {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-app-download-installation-faq__faq-answer ul li,
.page-app-download-installation-faq__faq-answer ol li {
    margin-bottom: 8px;
}

.page-app-download-installation-faq__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-app-download-installation-faq__faq-answer a:hover {
    color: #e6c200;
}

.page-app-download-installation-faq__img-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-faq__cta-banner {
    background-color: #FFD700; /* Gold background */
    color: #0A2239; /* Dark blue text */
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-app-download-installation-faq__cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.page-app-download-installation-faq__cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.page-app-download-installation-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0A2239;
}

.page-app-download-installation-faq__cta-title .highlight {
    color: #0A2239;
}

.page-app-download-installation-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333333;
}

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

.page-app-download-installation-faq__cta-image {
    max-width: 150px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
}

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

    .page-app-download-installation-faq__hero-description,
    .page-app-download-installation-faq__cta-description {
        font-size: 1em;
    }

    .page-app-download-installation-faq__hero-actions,
    .page-app-download-installation-faq__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-app-download-installation-faq__btn {
        width: 80%;
        max-width: 300px;
    }

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

    .page-app-download-installation-faq__faq-question {
        font-size: 1.2em;
    }

    .page-app-download-installation-faq__faq-answer {
        font-size: 0.95em;
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-app-download-installation-faq__faq-list {
        padding: 20px;
    }

    .page-app-download-installation-faq__cta-banner {
        padding: 30px;
    }

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

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

    .page-app-download-installation-faq__hero-description {
        font-size: 0.9em;
    }

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

    .page-app-download-installation-faq__faq-question {
        font-size: 1.1em;
    }

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