/* style/download-center-mobile-access.css */

/* Biến CSS */
:root {
    --primary-color: #CC0000;
    --secondary-color: #333333;
    --accent-color: #FFD700; /* Gold */
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F8F8F8;
    --bg-dark: #222222;
    --border-color: #E0E0E0;
}

/* Cấu trúc chung cho trang */
.page-download-center-mobile-access {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.page-download-center-mobile-access__bg--light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-download-center-mobile-access__bg--dark {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Tiêu đề và Mô tả */
.page-download-center-mobile-access__heading {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 20px;
}

.page-download-center-mobile-access__heading--light {
    color: var(--text-light);
}

.page-download-center-mobile-access__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-dark);
}

.page-download-center-mobile-access__description--light {
    color: var(--text-light);
}

/* Nút chung */
.page-download-center-mobile-access__btn {
    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.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-download-center-mobile-access__btn--primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-download-center-mobile-access__btn--primary:hover {
    background-color: #B20000;
    transform: translateY(-2px);
}

.page-download-center-mobile-access__btn--secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.page-download-center-mobile-access__btn--secondary:hover {
    background-color: #444444;
    transform: translateY(-2px);
}

.page-download-center-mobile-access__link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-download-center-mobile-access__link:hover {
    color: #B20000;
}

/* Hero Section */
.page-download-center-mobile-access__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-mobile-access__hero-section .page-download-center-mobile-access__container {
    position: relative;
    z-index: 1;
}

.page-download-center-mobile-access__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light);
}

.page-download-center-mobile-access__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-download-center-mobile-access__hero-image-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-download-center-mobile-access__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-download-center-mobile-access__content-section {
    padding: 60px 0;
}

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

.page-download-center-mobile-access__benefit-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-download-center-mobile-access__benefit-item:hover {
    transform: translateY(-5px);
}

.page-download-center-mobile-access__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-download-center-mobile-access__benefit-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-mobile-access__benefit-description {
    font-size: 1em;
    color: var(--text-dark);
}

/* Tutorial Section */
.page-download-center-mobile-access__tutorial-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-download-center-mobile-access__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-download-center-mobile-access__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-download-center-mobile-access__step-number {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-mobile-access__step-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-mobile-access__step-description {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 25px;
    max-width: 700px;
}

.page-download-center-mobile-access__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-download-center-mobile-access__action-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    font-weight: 500;
    color: var(--secondary-color);
}

/* App Section */
.page-download-center-mobile-access__app-section {
    padding: 80px 0;
    text-align: center;
}

.page-download-center-mobile-access__app-image-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.page-download-center-mobile-access__app-image {
    max-width: 300px; /* Adjust size for QR code / app screenshot */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-download-center-mobile-access__faq-section {
    padding: 60px 0;
}

.page-download-center-mobile-access__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-download-center-mobile-access__faq-item {
    background-color: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.page-download-center-mobile-access__faq-question {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center-mobile-access__faq-answer {
    font-size: 1em;
    color: var(--text-dark);
}

/* CTA Section */
.page-download-center-mobile-access__cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
    padding: 80px 0;
    text-align: center;
}

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

    .page-download-center-mobile-access__subtitle {
        font-size: 1.1em;
    }

    .page-download-center-mobile-access__heading {
        font-size: 2em;
    }

    .page-download-center-mobile-access__description {
        font-size: 1em;
    }

    .page-download-center-mobile-access__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-mobile-access__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-download-center-mobile-access__hero-image {
        max-width: 95%;
    }

    .page-download-center-mobile-access__step-title {
        font-size: 1.5em;
    }

    .page-download-center-mobile-access__step-description {
        font-size: 0.95em;
    }

    .page-download-center-mobile-access__app-image {
        max-width: 250px;
    }

    .page-download-center-mobile-access__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-download-center-mobile-access__title {
        font-size: 2em;
    }

    .page-download-center-mobile-access__subtitle {
        font-size: 0.9em;
    }

    .page-download-center-mobile-access__heading {
        font-size: 1.8em;
    }

    .page-download-center-mobile-access__btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-download-center-mobile-access__hero-section,
    .page-download-center-mobile-access__content-section,
    .page-download-center-mobile-access__tutorial-section,
    .page-download-center-mobile-access__app-section,
    .page-download-center-mobile-access__faq-section,
    .page-download-center-mobile-access__cta-section {
        padding: 40px 0;
    }
}