/* style/download-center-android-app-guide.css */
.page-download-center-android-app-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for general text */
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-download-center-android-app-guide__hero-section {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-android-app-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="pattern-ku3933" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="2" fill="%23FFCC00" opacity="0.1"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23pattern-ku3933)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.page-download-center-android-app-guide__hero-section .page-download-center-android-app-guide__container {
    position: relative;
    z-index: 2;
}

.page-download-center-android-app-guide__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-download-center-android-app-guide__btn--primary {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Dark blue */
    border: 2px solid #FFCC00;
}

.page-download-center-android-app-guide__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-android-app-guide__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold */
    border: 2px solid #FFCC00;
}

.page-download-center-android-app-guide__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-download-center-android-app-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);
}

/* General Section Styling */
.page-download-center-android-app-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-center-android-app-guide__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-download-center-android-app-guide__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-download-center-android-app-guide__section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #444444;
}

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

.page-download-center-android-app-guide__benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-android-app-guide__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-download-center-android-app-guide__benefit-title {
    font-size: 1.4em;
    color: #003366; /* Dark blue */
    margin-bottom: 15px;
}

.page-download-center-android-app-guide__benefit-item p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 0;
}

/* Download Guide Section */
.page-download-center-android-app-guide__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-android-app-guide__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-download-center-android-app-guide__step-title {
    font-size: 1.6em;
    color: #003366; /* Dark blue */
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.page-download-center-android-app-guide__step-title::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFCC00; /* Gold */
    color: #003366;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
}

.page-download-center-android-app-guide__guide-steps .page-download-center-android-app-guide__step-item:nth-child(1) .page-download-center-android-app-guide__step-title::before { content: '1'; }
.page-download-center-android-app-guide__guide-steps .page-download-center-android-app-guide__step-item:nth-child(2) .page-download-center-android-app-guide__step-title::before { content: '2'; }
.page-download-center-android-app-guide__guide-steps .page-download-center-android-app-guide__step-item:nth-child(3) .page-download-center-android-app-guide__step-title::before { content: '3'; }
.page-download-center-android-app-guide__guide-steps .page-download-center-android-app-guide__step-item:nth-child(4) .page-download-center-android-app-guide__step-title::before { content: '4'; }
.page-download-center-android-app-guide__guide-steps .page-download-center-android-app-guide__step-item:nth-child(5) .page-download-center-android-app-guide__step-title::before { content: '5'; }
.page-download-center-android-app-guide__guide-steps .page-download-center-android-app-guide__step-item:nth-child(6) .page-download-center-android-app-guide__step-title::before { content: '6'; }

.page-download-center-android-app-guide__step-item p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

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

.page-download-center-android-app-guide__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

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

.page-download-center-android-app-guide__feature-item {
    background-color: #003366;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-download-center-android-app-guide__feature-title {
    font-size: 1.4em;
    color: #FFCC00; /* Gold */
    margin-bottom: 15px;
}

.page-download-center-android-app-guide__feature-item p, .page-download-center-android-app-guide__feature-item ul {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 0;
    list-style-position: inside;
    padding-left: 0;
}

.page-download-center-android-app-guide__feature-item ul li {
    margin-bottom: 8px;
}

.page-download-center-android-app-guide__app-features-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Benefits Summary Section */
.page-download-center-android-app-guide__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-android-app-guide__benefit-list li {
    background-color: #ffffff;
    border-left: 5px solid #FFCC00; /* Gold accent */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-download-center-android-app-guide__benefit-list li strong {
    color: #003366;
}

.page-download-center-android-app-guide__security-image {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Troubleshooting Section */
.page-download-center-android-app-guide__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    text-align: left;
}

.page-download-center-android-app-guide__faq-question {
    font-size: 1.3em;
    color: #003366; /* Dark blue */
    margin-bottom: 10px;
}

.page-download-center-android-app-guide__faq-item p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 0;
}

/* CTA Register Section */
.page-download-center-android-app-guide__section--cta-register {
    background: linear-gradient(135deg, #003366, #336699);
    color: #ffffff;
    padding: 80px 0;
}

.page-download-center-android-app-guide__section--cta-register .page-download-center-android-app-guide__section-title {
    color: #FFCC00; /* Gold */
}

.page-download-center-android-app-guide__section--cta-register p {
    color: #e0e0e0;
}

.page-download-center-android-app-guide__promotion-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.page-download-center-android-app-guide__section--contact {
    background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-android-app-guide__main-title {
        font-size: 2.8em;
    }

    .page-download-center-android-app-guide__subtitle {
        font-size: 1.1em;
    }

    .page-download-center-android-app-guide__section-title {
        font-size: 2em;
    }

    .page-download-center-android-app-guide__hero-image {
        max-width: 500px;
    }

    .page-download-center-android-app-guide__app-features-image,
    .page-download-center-android-app-guide__promotion-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-download-center-android-app-guide__hero-section {
        padding: 60px 0;
    }

    .page-download-center-android-app-guide__main-title {
        font-size: 2.2em;
    }

    .page-download-center-android-app-guide__subtitle {
        font-size: 1em;
    }

    .page-download-center-android-app-guide__section {
        padding: 40px 0;
    }

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

    .page-download-center-android-app-guide__benefits-grid,
    .page-download-center-android-app-guide__features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-download-center-android-app-guide__cta-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-download-center-android-app-guide__main-title {
        font-size: 1.8em;
    }

    .page-download-center-android-app-guide__section-title {
        font-size: 1.5em;
    }

    .page-download-center-android-app-guide__step-title {
        font-size: 1.3em;
        padding-left: 35px;
    }

    .page-download-center-android-app-guide__step-title::before {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
    }

    .page-download-center-android-app-guide__benefit-list li {
        font-size: 0.95em;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .page-download-center-android-app-guide__security-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}