/* style/app-download-installation-faq.css */
.page-app-download-installation-faq {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    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 {
    background: linear-gradient(135deg, #0A2239 0%, #1A3F5E 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-app-download-installation-faq-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

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

.page-app-download-installation-faq-section {
    padding: 60px 0;
    background-color: #0A2239;
    color: #f0f0f0;
}

.page-app-download-installation-faq-section:nth-of-type(even) {
    background-color: #0F2E4A; /* Slightly lighter dark blue for contrast */
}

.page-app-download-installation-faq-section h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-app-download-installation-faq-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    border-radius: 2px;
}

.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;
    text-align: center;
}

.page-app-download-installation-faq-btn-primary {
    background-color: #DC143C; /* Red for primary action */
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-app-download-installation-faq-btn-primary:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #0A2239;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.page-app-download-installation-faq-btn-secondary {
    background-color: #FFD700; /* Gold for secondary action */
    color: #0A2239;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-app-download-installation-faq-btn-secondary:hover {
    background-color: transparent;
    color: #FFD700;
    border-color: #DC143C;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

/* Benefits Section */
.page-app-download-installation-faq-benefits h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-app-download-installation-faq-benefits p {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
}

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

.page-app-download-installation-faq-benefit-item {
    background-color: #1A3F5E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-installation-faq-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-app-download-installation-faq-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #FFD700);
}

/* Guide Section */
.page-app-download-installation-faq-guide h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-app-download-installation-faq-guide p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-app-download-installation-faq-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-app-download-installation-faq-step-item {
    background-color: #1A3F5E;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-app-download-installation-faq-step-number {
    background-color: #DC143C;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

.page-app-download-installation-faq-step-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
}

/* FAQ Section */
.page-app-download-installation-faq-faq-items {
    margin-top: 40px;
}

.page-app-download-installation-faq-faq-item {
    background-color: #1A3F5E;
    border: 1px solid #2A5C80;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-faq-faq-item h3 {
    background-color: #2A5C80;
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-app-download-installation-faq-faq-item h3::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-app-download-installation-faq-faq-item h3.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-app-download-installation-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-app-download-installation-faq-answer p {
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-app-download-installation-faq-answer ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #C0C0C0;
}

.page-app-download-installation-faq-answer ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-app-download-installation-faq-answer strong {
    color: #FFD700;
}

.page-app-download-installation-faq-answer-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700;
}

/* Tips Section */
.page-app-download-installation-faq-tips ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-app-download-installation-faq-tips ul li {
    background-color: #1A3F5E;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #C0C0C0;
    line-height: 1.6;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-faq-tips ul li strong {
    color: #FFD700;
}

.page-app-download-installation-faq-img-full {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #DC143C;
}

/* CTA Section */
.page-app-download-installation-faq-cta {
    background: linear-gradient(90deg, #0A2239, #2A5C80); /* Dark blue to lighter dark blue gradient */
    text-align: center;
    padding: 80px 0;
    border-top: 2px solid #DC143C;
    border-bottom: 2px solid #DC143C;
}

.page-app-download-installation-faq-cta h2 {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-app-download-installation-faq-cta p {
    font-size: 1.3em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.page-app-download-installation-faq-cta-content {
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(10, 34, 57, 0.8); /* Semi-transparent background */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid #FFD700;
}

/* Contact Section */
.page-app-download-installation-faq-contact p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #C0C0C0;
    margin-bottom: 15px;
}

.page-app-download-installation-faq-contact ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-app-download-installation-faq-contact ul li {
    font-size: 1.1em;
    color: #FFD700;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-app-download-installation-faq-contact ul li::before {
    content: '▶';
    color: #DC143C;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8em;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-app-download-installation-faq-hero h1 {
        font-size: 2.5em;
    }
    .page-app-download-installation-faq-hero p {
        font-size: 1em;
    }
    .page-app-download-installation-faq-section h2 {
        font-size: 2em;
    }
    .page-app-download-installation-faq-grid {
        grid-template-columns: 1fr;
    }
    .page-app-download-installation-faq-step-item {
        padding: 30px 20px;
    }
    .page-app-download-installation-faq-faq-item h3 {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-app-download-installation-faq-answer.active {
        padding: 15px 20px;
    }
    .page-app-download-installation-faq-cta h2 {
        font-size: 2em;
    }
    .page-app-download-installation-faq-cta p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-app-download-installation-faq-hero {
        padding: 60px 0;
    }
    .page-app-download-installation-faq-hero h1 {
        font-size: 2em;
    }
    .page-app-download-installation-faq-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-app-download-installation-faq-section {
        padding: 40px 0;
    }
    .page-app-download-installation-faq-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-app-download-installation-faq-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-app-download-installation-faq-faq-item h3 {
        font-size: 1.1em;
    }
    .page-app-download-installation-faq-cta h2 {
        font-size: 1.8em;
    }
}