.page-download-center-mobile-web-access {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-download-center-mobile-web-access__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-mobile-web-access__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    transform: rotate(20deg);
    z-index: 0;
}

.page-download-center-mobile-web-access__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-download-center-mobile-web-access__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-download-center-mobile-web-access__hero-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    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;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.page-download-center-mobile-web-access__hero-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-download-center-mobile-web-access__hero-button--secondary {
    background-color: #004488;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-download-center-mobile-web-access__hero-button--secondary:hover {
    background-color: #0055aa;
    border-color: #e6b800;
}

.page-download-center-mobile-web-access__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-download-center-mobile-web-access__why-choose-section,
.page-download-center-mobile-web-access__how-to-access-section,
.page-download-center-mobile-web-access__features-overview-section,
.page-download-center-mobile-web-access__comparison-section,
.page-download-center-mobile-web-access__faq-section,
.page-download-center-mobile-web-access__conclusion-section {
    padding: 80px 0;
}

.page-download-center-mobile-web-access__why-choose-section {
    background-color: #fff;
}

.page-download-center-mobile-web-access__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-download-center-mobile-web-access__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-mobile-web-access__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-download-center-mobile-web-access__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center-mobile-web-access__feature-description {
    color: #555;
    font-size: 1em;
}

.page-download-center-mobile-web-access__how-to-access-section {
    background-color: #eaf1f6;
}

.page-download-center-mobile-web-access__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.page-download-center-mobile-web-access__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-download-center-mobile-web-access__step-number {
    background-color: #FFCC00;
    color: #003366;
    font-size: 2.2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-download-center-mobile-web-access__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center-mobile-web-access__step-description {
    color: #444;
    max-width: 700px;
    margin-bottom: 30px;
}

.page-download-center-mobile-web-access__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #003366;
}

.page-download-center-mobile-web-access__cta-group {
    text-align: center;
    margin-top: 60px;
}

.page-download-center-mobile-web-access__cta-button {
    display: inline-block;
    background-color: #003366;
    color: #FFCC00;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: 2px solid #003366;
}

.page-download-center-mobile-web-access__cta-button:hover {
    background-color: #004488;
    transform: translateY(-3px);
}

.page-download-center-mobile-web-access__cta-button--secondary {
    background-color: #FFCC00;
    color: #003366;
    border-color: #FFCC00;
}

.page-download-center-mobile-web-access__cta-button--secondary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-download-center-mobile-web-access__features-overview-section {
    background-color: #fff;
}

.page-download-center-mobile-web-access__feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-download-center-mobile-web-access__feature-block {
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #003366;
}

.page-download-center-mobile-web-access__feature-block:hover {
    transform: translateY(-7px);
}

.page-download-center-mobile-web-access__feature-block-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 20px;
}

.page-download-center-mobile-web-access__feature-block p {
    color: #555;
    margin-bottom: 25px;
}

.page-download-center-mobile-web-access__feature-block-image {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 20px;
}

.page-download-center-mobile-web-access__inline-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.page-download-center-mobile-web-access__inline-button:hover {
    background-color: #e6b800;
}

.page-download-center-mobile-web-access__comparison-section {
    background-color: #eaf1f6;
}

.page-download-center-mobile-web-access__comparison-table {
    overflow-x: auto;
}

.page-download-center-mobile-web-access__comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-download-center-mobile-web-access__comparison-table th,
.page-download-center-mobile-web-access__comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.page-download-center-mobile-web-access__comparison-table th {
    background-color: #003366;
    color: #FFCC00;
    font-weight: bold;
    font-size: 1.1em;
}

.page-download-center-mobile-web-access__comparison-table tr:nth-child(even) {
    background-color: #f6fafd;
}

.page-download-center-mobile-web-access__comparison-summary {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #444;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-mobile-web-access__faq-section {
    background-color: #fff;
}

.page-download-center-mobile-web-access__faq-items {
    display: grid;
    gap: 25px;
}

.page-download-center-mobile-web-access__faq-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFCC00;
}

.page-download-center-mobile-web-access__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center-mobile-web-access__faq-answer {
    color: #555;
}

.page-download-center-mobile-web-access__conclusion-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-download-center-mobile-web-access__conclusion-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-download-center-mobile-web-access__conclusion-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-download-center-mobile-web-access__conclusion-button:hover {
    background-color: #e6b800;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-download-center-mobile-web-access__steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-download-center-mobile-web-access__step-item {
        padding: 0 15px;
    }

    .page-download-center-mobile-web-access__step-item:nth-child(2) {
        margin-top: 50px;
    }

    .page-download-center-mobile-web-access__step-item:nth-child(3) {
        margin-top: 100px;
    }
}

@media (max-width: 1024px) {
    .page-download-center-mobile-web-access__hero-title {
        font-size: 2.8em;
    }
    .page-download-center-mobile-web-access__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-download-center-mobile-web-access__hero-section {
        padding: 80px 0;
    }
    .page-download-center-mobile-web-access__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-mobile-web-access__hero-description {
        font-size: 1em;
    }
    .page-download-center-mobile-web-access__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center-mobile-web-access__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-download-center-mobile-web-access__features-grid,
    .page-download-center-mobile-web-access__feature-blocks {
        grid-template-columns: 1fr;
    }
    .page-download-center-mobile-web-access__step-item {
        margin-top: 0 !important;
    }
    .page-download-center-mobile-web-access__comparison-table th,
    .page-download-center-mobile-web-access__comparison-table td {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-download-center-mobile-web-access__faq-question {
        font-size: 1.2em;
    }
    .page-download-center-mobile-web-access__conclusion-text {
        font-size: 1em;
    }
    .page-download-center-mobile-web-access__conclusion-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-download-center-mobile-web-access__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-mobile-web-access__hero-description {
        font-size: 0.9em;
    }
    .page-download-center-mobile-web-access__hero-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-download-center-mobile-web-access__section-title {
        font-size: 1.5em;
    }
    .page-download-center-mobile-web-access__feature-title {
        font-size: 1.3em;
    }
    .page-download-center-mobile-web-access__step-title {
        font-size: 1.5em;
    }
    .page-download-center-mobile-web-access__cta-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}