/* style/resources-nh88-mobile-app-download.css */

.page-resources-nh88-mobile-app-download {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-nh88-mobile-app-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-nh88-mobile-app-download__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-nh88-mobile-app-download__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-nh88-mobile-app-download__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-nh88-mobile-app-download__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-resources-nh88-mobile-app-download__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Dark blue for text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid #FFCC00;
}

.page-resources-nh88-mobile-app-download__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
    border-color: #e6b800;
}

.page-resources-nh88-mobile-app-download__cta-button--secondary {
    background-color: #003366; /* Dark blue */
    color: #FFCC00; /* Gold for text */
    border: 2px solid #FFCC00;
}

.page-resources-nh88-mobile-app-download__cta-button--secondary:hover {
    background-color: #004d99; /* Slightly lighter blue */
    border-color: #FFCC00;
}

.page-resources-nh88-mobile-app-download__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-resources-nh88-mobile-app-download__button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-nh88-mobile-app-download__button-center {
    text-align: center;
    margin-top: 40px;
}

.page-resources-nh88-mobile-app-download__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-resources-nh88-mobile-app-download__section:nth-of-type(odd) {
    background-color: #f0f4f7; /* Light grey-blue for contrast */
}

.page-resources-nh88-mobile-app-download__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-nh88-mobile-app-download__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-nh88-mobile-app-download__introduction p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-resources-nh88-mobile-app-download__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-nh88-mobile-app-download__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-nh88-mobile-app-download__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-nh88-mobile-app-download__grid-item h3 {
    color: #003366;
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-resources-nh88-mobile-app-download__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-resources-nh88-mobile-app-download__download-guide .page-resources-nh88-mobile-app-download__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.page-resources-nh88-mobile-app-download__download-guide .page-resources-nh88-mobile-app-download__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.page-resources-nh88-mobile-app-download__download-guide .page-resources-nh88-mobile-app-download__step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFCC00;
    color: #003366;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-resources-nh88-mobile-app-download__download-guide {
    counter-reset: step-counter;
}

.page-resources-nh88-mobile-app-download__step-item p {
    font-size: 1.05em;
    margin-bottom: 15px;
}

.page-resources-nh88-mobile-app-download__step-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-nh88-mobile-app-download__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-resources-nh88-mobile-app-download__list li {
    margin-bottom: 8px;
}

.page-resources-nh88-mobile-app-download__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 5px solid #003366;
}

.page-resources-nh88-mobile-app-download__faq-question {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-resources-nh88-mobile-app-download__faq-answer {
    font-size: 1.05em;
    color: #444;
}

.page-resources-nh88-mobile-app-download__faq-answer .page-resources-nh88-mobile-app-download__list {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0;
}

.page-resources-nh88-mobile-app-download__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-resources-nh88-mobile-app-download__benefits-list li {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #333;
    border-left: 5px solid #FFCC00;
}

.page-resources-nh88-mobile-app-download__benefit-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
}

.page-resources-nh88-mobile-app-download__conclusion p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 25px;
}

.page-resources-nh88-mobile-app-download__copyright {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-nh88-mobile-app-download__hero-title {
        font-size: 2.5em;
    }

    .page-resources-nh88-mobile-app-download__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-nh88-mobile-app-download__section-title {
        font-size: 2em;
    }

    .page-resources-nh88-mobile-app-download__grid {
        grid-template-columns: 1fr;
    }

    .page-resources-nh88-mobile-app-download__download-guide .page-resources-nh88-mobile-app-download__step-title {
        font-size: 1.5em;
        padding-left: 35px;
    }

    .page-resources-nh88-mobile-app-download__download-guide .page-resources-nh88-mobile-app-download__step-title::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }

    .page-resources-nh88-mobile-app-download__faq-question {
        font-size: 1.4em;
    }

    .page-resources-nh88-mobile-app-download__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-resources-nh88-mobile-app-download__cta-button {
        width: 100%;
        box-sizing: border-box;
    }

    .page-resources-nh88-mobile-app-download__button-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-nh88-mobile-app-download__hero-title {
        font-size: 2em;
    }

    .page-resources-nh88-mobile-app-download__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-nh88-mobile-app-download__section-title {
        font-size: 1.8em;
    }

    .page-resources-nh88-mobile-app-download__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .page-resources-nh88-mobile-app-download__download-guide .page-resources-nh88-mobile-app-download__step-item,
    .page-resources-nh88-mobile-app-download__faq-item,
    .page-resources-nh88-mobile-app-download__benefits-list li {
        padding: 20px;
    }
}