/* style/download-center-android-app.css */

/* General page styling */
.page-download-center-android-app {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-download-center-android-app__section {
    padding: 60px 0;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-download-center-android-app__section:nth-child(even) {
    background-color: #f0f2f5;
}

.page-download-center-android-app__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-download-center-android-app__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.page-download-center-android-app__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-download-center-android-app__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
}

.page-download-center-android-app__btn--primary:hover {
    background-color: #e5ad00;
    border-color: #e5ad00;
    color: #0d1259;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-android-app__btn--secondary {
    background-color: #1A237E;
    color: #ffffff;
    border: 2px solid #1A237E;
}

.page-download-center-android-app__btn--secondary:hover {
    background-color: #0d1259;
    border-color: #0d1259;
    color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-android-app__btn--outline {
    background-color: transparent;
    color: #1A237E;
    border: 2px solid #1A237E;
}

.page-download-center-android-app__btn--outline:hover {
    background-color: #1A237E;
    color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-android-app__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-download-center-android-app__hero-section {
    background: linear-gradient(135deg, #1A237E, #5f65a5);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-download-center-android-app__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFC107;
    line-height: 1.2;
    font-weight: 800;
}

.page-download-center-android-app__hero-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-download-center-android-app__download-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.page-download-center-android-app__qr-code-wrapper {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.page-download-center-android-app__qr-code {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.page-download-center-android-app__qr-text {
    font-size: 0.95em;
    color: #1A237E;
    font-weight: bold;
}

.page-download-center-android-app__hero-image {
    max-width: 450px;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-download-center-android-app__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center-android-app__benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #FFC107;
}

.page-download-center-android-app__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-download-center-android-app__benefit-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-download-center-android-app__benefit-text {
    color: #555;
    font-size: 1em;
}

.page-download-center-android-app__feature-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Installation Guide */
.page-download-center-android-app__step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 5px solid #1A237E;
}

.page-download-center-android-app__step-title {
    font-size: 1.8em;
    color: #1A237E;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-download-center-android-app__step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFC107;
    color: #1A237E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
}

.page-download-center-android-app__installation-guide {
    counter-reset: step-counter;
}

.page-download-center-android-app__step-text {
    color: #555;
    margin-bottom: 15px;
}

.page-download-center-android-app__step-list {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-download-center-android-app__step-list li {
    margin-bottom: 8px;
}

.page-download-center-android-app__step-list strong {
    color: #1A237E;
}

.page-download-center-android-app__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Requirements Section */
.page-download-center-android-app__requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-download-center-android-app__requirement-item {
    background-color: #f0f2f5;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.page-download-center-android-app__requirement-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-download-center-android-app__requirement-text {
    color: #555;
}

.page-download-center-android-app__requirements-image {
    display: block;
    max-width: 800px;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Troubleshooting Section */
.page-download-center-android-app__troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-download-center-android-app__issue-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FFC107;
}

.page-download-center-android-app__issue-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-download-center-android-app__issue-solution {
    color: #555;
}

.page-download-center-android-app__solution-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #555;
}

.page-download-center-android-app__contact-support {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #333;
}

/* FAQ Section */
.page-download-center-android-app__faq-list {
    margin-top: 40px;
}

.page-download-center-android-app__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-download-center-android-app__faq-question {
    font-size: 1.4em;
    color: #1A237E;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #f0f2f5;
    transition: background-color 0.3s ease;
}

.page-download-center-android-app__faq-question:hover {
    background-color: #e6e9ee;
}

.page-download-center-android-app__faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-download-center-android-app__faq-item.active .page-download-center-android-app__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-download-center-android-app__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
}

.page-download-center-android-app__faq-item.active .page-download-center-android-app__faq-answer {
    max-height: 500px;
    padding: 20px 30px;
}

.page-download-center-android-app__faq-answer p {
    color: #555;
    margin-bottom: 0;
}

.page-download-center-android-app__faq-image {
    display: block;
    max-width: 600px;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-download-center-android-app__cta-section {
    background: linear-gradient(135deg, #1A237E, #0d1259);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.page-download-center-android-app__cta-title {
    font-size: 2.8em;
    color: #FFC107;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-download-center-android-app__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-download-center-android-app__cta-image {
    max-width: 500px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-download-center-android-app__hero-title {
        font-size: 2.5em;
    }
}