/* style/index-app-download-guide.css */
.page-index-app-download-guide {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text for dark background */
    background-color: #1A2B3C; /* Main dark background color */
    line-height: 1.6;
}

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

.page-index-app-download-guide__hero-section {
    background: linear-gradient(135deg, #1A2B3C, #0F1A25); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-index-app-download-guide__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-app-download-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-index-app-download-guide__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B3C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-index-app-download-guide__btn--primary:hover {
    background-color: #E0B300;
    transform: translateY(-3px);
}

.page-index-app-download-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

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

.page-index-app-download-guide__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-index-app-download-guide__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-app-download-guide__section:last-of-type {
    border-bottom: none;
}

.page-index-app-download-guide__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

.page-index-app-download-guide__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px auto;
    color: #E0E0E0;
}

.page-index-app-download-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-index-app-download-guide__feature-item {
    background-color: #2A3B4C; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-index-app-download-guide__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-app-download-guide__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-app-download-guide__feature-text {
    font-size: 1em;
    color: #CCCCCC;
}

.page-index-app-download-guide__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-index-app-download-guide__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2A3B4C;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-index-app-download-guide__step-number {
    background-color: #FFD700;
    color: #1A2B3C;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    border: 3px solid #1A2B3C;
}

.page-index-app-download-guide__step-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-app-download-guide__step-text {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 700px;
    margin-bottom: 30px;
}

.page-index-app-download-guide__step-text a {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-app-download-guide__step-text a:hover {
    color: #E0B300;
}

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

.page-index-app-download-guide__qr-codes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-index-app-download-guide__qr-item {
    text-align: center;
    background-color: #1A2B3C;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-index-app-download-guide__qr-item h4 {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.page-index-app-download-guide__qr-image {
    width: 180px;
    height: 180px;
    border: 5px solid #FFD700;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-index-app-download-guide__note {
    font-style: italic;
    color: #AAAAAA;
    margin-top: 30px;
    font-size: 0.95em;
}

.page-index-app-download-guide__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-index-app-download-guide__faq-item {
    background-color: #2A3B4C;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-index-app-download-guide__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-app-download-guide__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
}

.page-index-app-download-guide__list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr)); /* Two columns for larger screens */
    gap: 30px;
}

.page-index-app-download-guide__list li {
    background-color: #2A3B4C;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-index-app-download-guide__list-item-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-app-download-guide__list li p {
    color: #CCCCCC;
    font-size: 1em;
}

.page-index-app-download-guide__cta-section {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #1A2B3C; /* Dark text on gold background */
}

.page-index-app-download-guide__cta-title {
    font-size: 3em;
    color: #1A2B3C;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-app-download-guide__cta-description {
    font-size: 1.2em;
    color: #444444;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Adjust buttons for CTA section */
.page-index-app-download-guide__cta-section .page-index-app-download-guide__btn--primary {
    background-color: #1A2B3C;
    color: #FFD700;
    border: 2px solid #1A2B3C;
}

.page-index-app-download-guide__cta-section .page-index-app-download-guide__btn--primary:hover {
    background-color: #0F1A25;
    border-color: #0F1A25;
}

.page-index-app-download-guide__cta-section .page-index-app-download-guide__btn--secondary {
    background-color: transparent;
    color: #1A2B3C;
    border: 2px solid #1A2B3C;
}

.page-index-app-download-guide__cta-section .page-index-app-download-guide__btn--secondary:hover {
    background-color: rgba(26, 43, 60, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-app-download-guide__hero-title {
        font-size: 2.8em;
    }
    .page-index-app-download-guide__section-title {
        font-size: 2.2em;
    }
    .page-index-app-download-guide__list {
        grid-template-columns: 1fr;
    }
    .page-index-app-download-guide__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-app-download-guide__hero-title {
        font-size: 2.2em;
    }
    .page-index-app-download-guide__hero-description {
        font-size: 1.1em;
    }
    .page-index-app-download-guide__section-title {
        font-size: 1.8em;
    }
    .page-index-app-download-guide__features-grid {
        grid-template-columns: 1fr;
    }
    .page-index-app-download-guide__step-title {
        font-size: 1.6em;
    }
    .page-index-app-download-guide__qr-codes {
        flex-direction: column;
        align-items: center;
    }
    .page-index-app-download-guide__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-index-app-download-guide__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-index-app-download-guide__hero-title {
        font-size: 1.8em;
    }
    .page-index-app-download-guide__hero-description {
        font-size: 1em;
    }
    .page-index-app-download-guide__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-index-app-download-guide__section {
        padding: 50px 0;
    }
    .page-index-app-download-guide__section-title {
        font-size: 1.5em;
        margin-bottom: 40px;
    }
    .page-index-app-download-guide__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-index-app-download-guide__step-title {
        font-size: 1.4em;
    }
    .page-index-app-download-guide__cta-title {
        font-size: 1.8em;
    }
}