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

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

.page-download-center-app-installation-guide__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-app-installation-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,tech_pattern,blue_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-download-center-app-installation-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-download-center-app-installation-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-download-center-app-installation-guide__content-section {
    padding: 60px 0;
}

.page-download-center-app-installation-guide__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-download-center-app-installation-guide__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 10px;
}

.page-download-center-app-installation-guide__sub-section-title {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-download-center-app-installation-guide__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-download-center-app-installation-guide__article ul,
.page-download-center-app-installation-guide__article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-download-center-app-installation-guide__article li {
    margin-bottom: 8px;
    color: #444;
}

.page-download-center-app-installation-guide__article a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-download-center-app-installation-guide__article a:hover {
    text-decoration: underline;
}

.page-download-center-app-installation-guide__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-download-center-app-installation-guide__btn--primary {
    background-color: #ffc107;
    color: #003ef8; /* Dark blue for contrast */
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-download-center-app-installation-guide__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255, 193, 7, 0.6);
}

.page-download-center-app-installation-guide__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    margin-top: 20px;
}

.page-download-center-app-installation-guide__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 123, 255, 0.5);
}

.page-download-center-app-installation-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-download-center-app-installation-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    display: block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-installation-guide__image--small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-app-installation-guide__faq-item {
    background-color: #f0f8ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-download-center-app-installation-guide__faq-question {
    font-size: 1.3em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-download-center-app-installation-guide__faq-answer {
    color: #333;
    margin-bottom: 0;
}

.page-download-center-app-installation-guide__cta-banner {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-installation-guide__cta-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, rgba(0,123,255,0) 70%);
    z-index: 0;
}

.page-download-center-app-installation-guide__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-download-center-app-installation-guide__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-download-center-app-installation-guide__cta-image {
    max-width: 300px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

    .page-download-center-app-installation-guide__hero-description {
        font-size: 1em;
    }

    .page-download-center-app-installation-guide__section-title {
        font-size: 1.8em;
    }

    .page-download-center-app-installation-guide__sub-section-title {
        font-size: 1.4em;
    }

    .page-download-center-app-installation-guide__article {
        padding: 25px;
    }

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

    .page-download-center-app-installation-guide__btn--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    .page-download-center-app-installation-guide__cta-banner {
        padding: 40px 20px;
    }

    .page-download-center-app-installation-guide__cta-title {
        font-size: 2em;
    }

    .page-download-center-app-installation-guide__cta-description {
        font-size: 1em;
    }
}

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

    .page-download-center-app-installation-guide__hero-description {
        font-size: 0.9em;
    }

    .page-download-center-app-installation-guide__section-title {
        font-size: 1.6em;
    }

    .page-download-center-app-installation-guide__sub-section-title {
        font-size: 1.2em;
    }

    .page-download-center-app-installation-guide__article {
        padding: 15px;
    }

    .page-download-center-app-installation-guide__btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-download-center-app-installation-guide__btn--secondary {
        margin-top: 0;
    }
    .page-download-center-app-installation-guide__btn--large {
        width: auto;
        margin-bottom: 0;
    }
    .page-download-center-app-installation-guide__cta-image {
        max-width: 200px;
    }
}