/* style/app-download-installation-guide.css */

.page-app-download-installation-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-app-download-installation-guide__hero {
    background: linear-gradient(135deg, #003366, #1a477a);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-installation-guide__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

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

.page-app-download-installation-guide__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-installation-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-app-download-installation-guide__button--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

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

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

.page-app-download-installation-guide__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

.page-app-download-installation-guide__hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.page-app-download-installation-guide__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-app-download-installation-guide__section:nth-of-type(even) {
    background-color: #f0f4f7;
}

.page-app-download-installation-guide__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-app-download-installation-guide__sub-section-title {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-app-download-installation-guide__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

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

.page-app-download-installation-guide__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #003366;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-app-download-installation-guide__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-app-download-installation-guide__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-app-download-installation-guide__center-content {
    text-align: center;
    margin: 30px 0;
}

.page-app-download-installation-guide__qr-code {
    max-width: 200px;
    height: auto;
    border: 5px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation-guide__note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

.page-app-download-installation-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-app-download-installation-guide__troubleshooting-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-app-download-installation-guide__troubleshooting-item:hover {
    transform: translateY(-5px);
}

.page-app-download-installation-guide__troubleshooting-item .page-app-download-installation-guide__sub-section-title {
    font-size: 1.4em;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
    color: #003366;
    text-align: center;
    margin-bottom: 15px;
}
.page-app-download-installation-guide__troubleshooting-item .page-app-download-installation-guide__sub-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}


.page-app-download-installation-guide__support-image {
    max-width: 300px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-app-download-installation-guide__promotions {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-app-download-installation-guide__promotions .page-app-download-installation-guide__section-title {
    color: #FFD700;
}
.page-app-download-installation-guide__promotions .page-app-download-installation-guide__section-title::after {
    background-color: #FFD700;
}

.page-app-download-installation-guide__promotion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1a477a;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-app-download-installation-guide__promotion-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    object-fit: contain;
}

.page-app-download-installation-guide__promotion-content {
    text-align: left;
    max-width: 800px;
}

.page-app-download-installation-guide__promotion-content h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-app-download-installation-guide__promotion-content p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-app-download-installation-guide__promotion-content .page-app-download-installation-guide__button {
    margin-top: 20px;
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

.page-app-download-installation-guide__promotion-content .page-app-download-installation-guide__button:hover {
    background-color: #e6c200;
}


.page-app-download-installation-guide__conclusion {
    text-align: center;
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-app-download-installation-guide__cta-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-installation-guide__cta-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.page-app-download-installation-guide__cta-text h3 {
    color: #003366;
    font-size: 2em;
    margin-bottom: 15px;
}

.page-app-download-installation-guide__cta-text p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Floating CTA button */
.page-app-download-installation-guide__floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.page-app-download-installation-guide__floating-button {
    background-color: #FFD700;
    color: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-app-download-installation-guide__floating-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-app-download-installation-guide__floating-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-app-download-installation-guide__title {
        font-size: 2.2em;
    }
    .page-app-download-installation-guide__subtitle {
        font-size: 1.1em;
    }
    .page-app-download-installation-guide__section-title {
        font-size: 1.8em;
    }
    .page-app-download-installation-guide__sub-section-title {
        font-size: 1.4em;
    }
    .page-app-download-installation-guide__promotion-card {
        flex-direction: column;
        padding: 30px;
    }
    .page-app-download-installation-guide__promotion-image {
        margin-bottom: 20px;
    }
    .page-app-download-installation-guide__cta-final {
        flex-direction: column;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-app-download-installation-guide__hero {
        padding: 60px 0;
    }
    .page-app-download-installation-guide__title {
        font-size: 1.8em;
    }
    .page-app-download-installation-guide__subtitle {
        font-size: 1em;
    }
    .page-app-download-installation-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-app-download-installation-guide__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-app-download-installation-guide__section {
        padding: 40px 0;
    }
    .page-app-download-installation-guide__section-title {
        font-size: 1.6em;
    }
    .page-app-download-installation-guide__sub-section-title {
        font-size: 1.2em;
    }
    .page-app-download-installation-guide__list li,
    .page-app-download-installation-guide__numbered-list li {
        font-size: 1em;
    }
    .page-app-download-installation-guide__troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    .page-app-download-installation-guide__floating-cta {
        bottom: 20px;
        right: 20px;
    }
    .page-app-download-installation-guide__floating-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-app-download-installation-guide__floating-icon {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-app-download-installation-guide__title {
        font-size: 1.5em;
    }
    .page-app-download-installation-guide__button {
        font-size: 0.9em;
        padding: 12px 20px;
    }
    .page-app-download-installation-guide__qr-code {
        max-width: 150px;
    }
}