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

/* General styles for the page content */
.page-app-download-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for main text on light background */
    background-color: #f8f9fa; /* Light background for readability */
}

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

/* Hero Section */
.page-app-download-faq__hero {
    background-color: #0A1931; /* Dark blue background */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-app-download-faq__hero-content {
    max-width: 800px;
    z-index: 1; /* Ensure content is above image */
}

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

.page-app-download-faq__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Slightly off-white for subtitle */
}

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

.page-app-download-faq__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-app-download-faq__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #0A1931;
}

.page-app-download-faq__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
    max-width: 400px; /* Adjust size as needed */
}

.page-app-download-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ List Section */
.page-app-download-faq__faq-list {
    padding: 60px 0;
    background-color: #FFFFFF; /* White background for FAQ content */
}

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

.page-app-download-faq__accordion {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-app-download-faq__faq-item {
    border-bottom: 1px solid #e0e0e0;
}

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

.page-app-download-faq__faq-question {
    background-color: #f2f2f2; /* Light grey for question background */
    color: #0A1931; /* Dark blue text */
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-app-download-faq__faq-item.active .page-app-download-faq__faq-question::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for '-' */
}

.page-app-download-faq__faq-question:hover {
    background-color: #e6e6e6;
}

.page-app-download-faq__faq-answer {
    padding: 20px 25px;
    background-color: #ffffff;
    color: #333333; /* Dark grey text */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-app-download-faq__faq-item.active .page-app-download-faq__faq-answer {
    max-height: 1000px; /* A large enough value for smooth transition */
}

.page-app-download-faq__faq-answer p,
.page-app-download-faq__faq-answer ol,
.page-app-download-faq__faq-answer ul {
    margin-bottom: 15px;
    font-size: 1.05em;
}

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

.page-app-download-faq__faq-illustration {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-app-download-faq__link-text {
    color: #0A1931; /* Dark blue link */
    text-decoration: underline;
    font-weight: bold;
}

.page-app-download-faq__link-text:hover {
    color: #FFD700; /* Gold on hover */
}

/* Call to Action Section */
.page-app-download-faq__cta-section {
    background-color: #0A1931; /* Dark blue background */
    color: #FFFFFF; /* White text */
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-faq__cta-content {
    z-index: 1;
    position: relative;
}

.page-app-download-faq__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-app-download-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-app-download-faq__btn--secondary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-app-download-faq__btn--secondary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #0A1931;
}

.page-app-download-faq__cta-image {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 60%; /* Adjust size */
    max-width: 700px;
    opacity: 0.15; /* Subtle background */
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-app-download-faq__hero {
        padding: 60px 0;
    }
    .page-app-download-faq__hero-title {
        font-size: 2.5em;
    }
    .page-app-download-faq__hero-subtitle {
        font-size: 1.1em;
    }
    .page-app-download-faq__section-title {
        font-size: 2em;
    }
    .page-app-download-faq__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-app-download-faq__faq-answer {
        padding: 18px 20px;
    }
    .page-app-download-faq__cta-title {
        font-size: 2.2em;
    }
    .page-app-download-faq__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-app-download-faq__hero {
        padding: 40px 0;
    }
    .page-app-download-faq__hero-title {
        font-size: 2em;
    }
    .page-app-download-faq__hero-subtitle {
        font-size: 1em;
    }
    .page-app-download-faq__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-app-download-faq__section-title {
        font-size: 1.8em;
    }
    .page-app-download-faq__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-app-download-faq__faq-answer {
        padding: 15px;
    }
    .page-app-download-faq__cta-title {
        font-size: 1.8em;
    }
    .page-app-download-faq__cta-description {
        font-size: 1em;
    }
    .page-app-download-faq__hero-image-wrapper {
        max-width: 250px;
    }
}