/* style/app-download-faq.css */
.page-app-download-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-app-download-faq__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-faq__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-app-download-faq__hero > * {
    position: relative;
    z-index: 2;
}

.page-app-download-faq__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Bright gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-faq__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-app-download-faq__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-app-download-faq__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

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

.page-app-download-faq__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-app-download-faq__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-app-download-faq__faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-left: 5px solid #000080; /* Dark blue accent */
}

.page-app-download-faq__faq-question {
    font-size: 1.8em;
    color: #000080; /* Dark blue for questions */
    margin-bottom: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-app-download-faq__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-app-download-faq__faq-answer {
    font-size: 1.1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

.page-app-download-faq__faq-answer h3 {
    color: #000080;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-app-download-faq__faq-answer ol,
.page-app-download-faq__faq-answer ul {
    margin-left: 25px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.page-app-download-faq__faq-answer ol {
    list-style-type: decimal;
}

.page-app-download-faq__faq-answer li {
    margin-bottom: 10px;
}

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

.page-app-download-faq__image-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.page-app-download-faq__image-wrapper--inline {
    margin: 20px 0;
}

.page-app-download-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-app-download-faq__cta-section {
    background-color: #000080; /* Dark blue background */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

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

.page-app-download-faq__cta-subtext {
    margin-top: 20px;
    font-size: 1em;
    color: #ccc;
}

.page-app-download-faq__cta-subtext a {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
}

.page-app-download-faq__cta-subtext a:hover {
    text-decoration: underline;
}

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

    .page-app-download-faq__subtitle {
        font-size: 1.1em;
    }

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

    .page-app-download-faq__faq-answer {
        font-size: 1em;
    }

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

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

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

    .page-app-download-faq__subtitle {
        font-size: 1em;
    }

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

    .page-app-download-faq__faq-answer {
        font-size: 0.95em;
    }

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

    .page-app-download-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}