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

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

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

.page-app-download-installation .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-app-download-installation .hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-app-download-installation .hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
}

.page-app-download-installation .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-app-download-installation .hero-content p a {
    color: #FFD700;
    text-decoration: underline;
}

.page-app-download-installation .hero-actions .btn {
    margin: 10px;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-app-download-installation .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-app-download-installation .btn-primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-app-download-installation .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-app-download-installation .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-app-download-installation .hero-image {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    z-index: 1;
}

.page-app-download-installation .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation .introduction-section, 
.page-app-download-installation .installation-guide-section, 
.page-app-download-installation .troubleshooting-section, 
.page-app-download-installation .benefits-section, 
.page-app-download-installation .cta-section {
    padding: 60px 0;
}

.page-app-download-installation .introduction-section h2, 
.page-app-download-installation .installation-guide-section h2, 
.page-app-download-installation .troubleshooting-section h2, 
.page-app-download-installation .benefits-section h2, 
.page-app-download-installation .cta-section h2 {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    margin-bottom: 30px;
    text-align: center;
}

.page-app-download-installation .introduction-section h2 a,
.page-app-download-installation .installation-guide-section h2 a {
    color: #0A2463;
    text-decoration: none;
}

.page-app-download-installation .introduction-section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #555;
}

.page-app-download-installation .introduction-section p a {
    color: #0A2463;
    font-weight: bold;
}

.page-app-download-installation .guide-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.page-app-download-installation .guide-item h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2em;
}

.page-app-download-installation .step-by-step .step {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 5px solid #0A2463;
    background-color: #f0f4f8;
    border-radius: 5px;
}

.page-app-download-installation .step-by-step .step h3 {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-app-download-installation .step-by-step .step h3 a {
    color: #0A2463;
    text-decoration: none;
}

.page-app-download-installation .step-by-step .step p {
    margin-bottom: 15px;
}

.page-app-download-installation .step-by-step .step p a {
    color: #0A2463;
    font-weight: bold;
}

.page-app-download-installation .step-by-step .step img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation .step-by-step .step ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-app-download-installation .step-by-step .step ul li {
    margin-bottom: 5px;
}

.page-app-download-installation .troubleshooting-section {
    background-color: #e9ecef;
}

.page-app-download-installation .troubleshooting-section .faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-app-download-installation .troubleshooting-section .faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-app-download-installation .troubleshooting-section .faq-item h3 {
    color: #0A2463;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-app-download-installation .troubleshooting-section .faq-item p {
    margin-bottom: 10px;
}

.page-app-download-installation .troubleshooting-section .faq-item p a {
    color: #0A2463;
    font-weight: bold;
}

.page-app-download-installation .troubleshooting-section .faq-item ul {
    list-style-type: disc;
    margin-left: 20px;
}

.page-app-download-installation .troubleshooting-section .faq-item ul li {
    margin-bottom: 5px;
}

.page-app-download-installation .benefits-section {
    background-color: #FFFFFF;
}

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

.page-app-download-installation .benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #f0f4f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-installation .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-app-download-installation .benefit-card .icon-img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-app-download-installation .benefit-card h3 {
    color: #0A2463;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.page-app-download-installation .cta-section {
    background-color: #0A2463; /* Dark blue */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-app-download-installation .cta-section h2 {
    color: #FFD700; /* Gold */
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-app-download-installation .cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-installation .cta-section p a {
    color: #FFD700;
    text-decoration: underline;
}

.page-app-download-installation .cta-buttons .btn {
    margin: 10px;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-app-download-installation .hero-section .container {
        flex-direction: row;
        text-align: left;
    }

    .page-app-download-installation .hero-content {
        text-align: left;
    }

    .page-app-download-installation .hero-image {
        margin-top: 0;
        flex-shrink: 0;
    }

    .page-app-download-installation .hero-content h1 {
        font-size: 3.8em;
    }
}

@media (max-width: 767px) {
    .page-app-download-installation .hero-content h1 {
        font-size: 2.5em;
    }

    .page-app-download-installation .introduction-section h2, 
    .page-app-download-installation .installation-guide-section h2, 
    .page-app-download-installation .troubleshooting-section h2, 
    .page-app-download-installation .benefits-section h2, 
    .page-app-download-installation .cta-section h2 {
        font-size: 2em;
    }

    .page-app-download-installation .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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