/* style/download-center-download-install-faq.css */

.page-download-center-download-install-faq {
    font-family: 'Arial', sans-serif;
    color: #0A244A; /* Dark blue for main text on light backgrounds */
    line-height: 1.6;
}

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

/* Hero Section */
.page-download-center-download-install-faq__hero {
    background-color: #0A244A; /* Dark blue background */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-download-center-download-install-faq__hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px; /* Adjust for container padding */
}

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

.page-download-center-download-install-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter white for description */
}

.page-download-center-download-install-faq__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px; /* Adjust for container padding */
}

.page-download-center-download-install-faq__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-download-center-download-install-faq__section {
    padding: 60px 0;
    background-color: #F8F9FA; /* Light gray background for main content */
}

.page-download-center-download-install-faq__section--alt-bg {
    background-color: #EFEFEF; /* Slightly darker light gray for alternating sections */
}

.page-download-center-download-install-faq__section-title {
    font-size: 2.5em;
    color: #0A244A; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-download-center-download-install-faq__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent under titles */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-download-center-download-install-faq__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-download-center-download-install-faq__list li {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700; /* Gold accent */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    color: #333333; /* Darker text for list items */
}

.page-download-center-download-install-faq__list li strong {
    color: #0A244A;
}

.page-download-center-download-install-faq__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 20px 0;
}

.page-download-center-download-install-faq__numbered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.page-download-center-download-install-faq__sub-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.page-download-center-download-install-faq__sub-list li {
    background-color: transparent;
    border-left: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 1em;
}

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

.page-download-center-download-install-faq__image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-download-install-faq__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #555555;
    font-size: 0.95em;
}

/* FAQ Section */
.page-download-center-download-install-faq__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-download-center-download-install-faq__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-download-install-faq__faq-question {
    font-size: 1.3em;
    color: #0A244A; /* Dark blue for FAQ questions */
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F0F4F8; /* Light background for question */
    border-bottom: 1px solid #E0E0E0;
}

.page-download-center-download-install-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-download-center-download-install-faq__faq-item.active .page-download-center-download-install-faq__faq-question::after {
    transform: rotate(45deg);
}

.page-download-center-download-install-faq__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #333333;
}

.page-download-center-download-install-faq__faq-item.active .page-download-center-download-install-faq__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

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

/* Call to Action Section */
.page-download-center-download-install-faq__cta-section {
    background-color: #0A244A; /* Dark blue background */
    color: #FFFFFF; /* White text */
    padding: 80px 0;
    text-align: center;
}

.page-download-center-download-install-faq__cta-content {
    max-width: 900px;
}

.page-download-center-download-install-faq__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 25px;
}

.page-download-center-download-install-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-download-center-download-install-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-download-center-download-install-faq__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-download-center-download-install-faq__button--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A244A; /* Dark blue text for contrast */
    border: 2px solid #FFD700;
}

.page-download-center-download-install-faq__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-download-center-download-install-faq__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-download-center-download-install-faq__button--secondary:hover {
    background-color: #FFD700;
    color: #0A244A; /* Dark blue text on gold hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-download-install-faq__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-download-center-download-install-faq__hero-content,
    .page-download-center-download-install-faq__hero-image-wrapper {
        padding: 0 20px;
    }

    .page-download-center-download-install-faq__hero-title {
        font-size: 2.5em;
    }

    .page-download-center-download-install-faq__hero-description {
        font-size: 1.1em;
    }

    .page-download-center-download-install-faq__section-title {
        font-size: 2em;
    }

    .page-download-center-download-install-faq__image {
        max-width: 90%;
    }

    .page-download-center-download-install-faq__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-download-center-download-install-faq__hero {
        padding: 40px 0;
    }

    .page-download-center-download-install-faq__hero-title {
        font-size: 2em;
    }

    .page-download-center-download-install-faq__hero-description {
        font-size: 1em;
    }

    .page-download-center-download-install-faq__section {
        padding: 40px 0;
    }

    .page-download-center-download-install-faq__section-title {
        font-size: 1.8em;
    }

    .page-download-center-download-install-faq__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-download-center-download-install-faq__faq-answer {
        padding: 15px 20px;
    }

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

    .page-download-center-download-install-faq__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-download-install-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-download-center-download-install-faq__hero-title {
        font-size: 1.8em;
    }

    .page-download-center-download-install-faq__section-title {
        font-size: 1.6em;
    }

    .page-download-center-download-install-faq__list li,
    .page-download-center-download-install-faq__numbered-list li,
    .page-download-center-download-install-faq__faq-answer p {
        font-size: 0.95em;
    }

    .page-download-center-download-install-faq__faq-question {
        font-size: 1em;
    }

    .page-download-center-download-install-faq__cta-title {
        font-size: 1.6em;
    }
}