/* style/resources-nn88-mobile-app-guide.css */

:root {
    --page-primary-color: #1A237E;
    --page-secondary-color: #FFC107;
    --page-text-dark: #333333;
    --page-text-light: #FFFFFF;
    --page-background-light: #F8F8F8;
    --page-background-dark: #121A5E; /* Slightly darker variant of primary for contrast */
    --page-accent-color: #E5DC81; /* Complementary to primary */
}

.page-resources-nn88-mobile-app-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

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

.page-resources-nn88-mobile-app-guide__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color), var(--page-background-dark));
    color: var(--page-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-nn88-mobile-app-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric_pattern,dark_blue,gold_accents]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-nn88-mobile-app-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

.page-resources-nn88-mobile-app-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-resources-nn88-mobile-app-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-nn88-mobile-app-guide__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-nn88-mobile-app-guide__btn--primary:hover {
    background-color: #e6b000; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-nn88-mobile-app-guide__btn--secondary {
    background-color: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.page-resources-nn88-mobile-app-guide__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-nn88-mobile-app-guide__section {
    padding: 60px 0;
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(odd) {
    background-color: var(--page-background-light);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-resources-nn88-mobile-app-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-primary-color);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__section-title {
    color: var(--page-secondary-color);
}

.page-resources-nn88-mobile-app-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-nn88-mobile-app-guide__section--intro p {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-resources-nn88-mobile-app-guide__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--page-text-dark);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__feature-item {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-nn88-mobile-app-guide__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-nn88-mobile-app-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-resources-nn88-mobile-app-guide__feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--page-primary-color);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__feature-item h3 {
    color: var(--page-secondary-color);
}

.page-resources-nn88-mobile-app-guide__content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.page-resources-nn88-mobile-app-guide__content-row--reverse {
    flex-direction: row-reverse;
}

.page-resources-nn88-mobile-app-guide__content-text {
    flex: 1;
}

.page-resources-nn88-mobile-app-guide__content-image {
    flex: 1;
    text-align: center;
}

.page-resources-nn88-mobile-app-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-nn88-mobile-app-guide__image--inline {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto;
    box-shadow: none;
    border: 1px solid #eee;
}

.page-resources-nn88-mobile-app-guide__step-list {
    list-style: none;
    padding: 0;
}

.page-resources-nn88-mobile-app-guide__step-list li {
    background-color: #FFFFFF;
    border-left: 5px solid var(--page-secondary-color);
    margin-bottom: 25px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    color: var(--page-text-dark);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__step-list li {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border-left-color: var(--page-secondary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-nn88-mobile-app-guide__step-list li h3 {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__step-list li h3 {
    color: var(--page-secondary-color);
}

.page-resources-nn88-mobile-app-guide__step-list li p {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-resources-nn88-mobile-app-guide__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin-top: 10px;
}

.page-resources-nn88-mobile-app-guide__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-nn88-mobile-app-guide__feature-list li {
    display: flex;
    align-items: flex-start;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    color: var(--page-text-dark);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__feature-list li {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-nn88-mobile-app-guide__list-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.page-resources-nn88-mobile-app-guide__feature-list li strong {
    color: var(--page-primary-color);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__feature-list li strong {
    color: var(--page-secondary-color);
}

.page-resources-nn88-mobile-app-guide__faq-item {
    background-color: #FFFFFF;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    color: var(--page-text-dark);
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__faq-item {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-nn88-mobile-app-guide__faq-item h3 {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-nn88-mobile-app-guide__section:nth-of-type(even) .page-resources-nn88-mobile-app-guide__faq-item h3 {
    color: var(--page-secondary-color);
}

.page-resources-nn88-mobile-app-guide__faq-item p {
    margin-bottom: 0;
    font-size: 1em;
}

.page-resources-nn88-mobile-app-guide__contact-support {
    text-align: center;
    font-size: 1.1em;
    margin-top: 30px;
}

.page-resources-nn88-mobile-app-guide__section--final-cta {
    text-align: center;
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
}

.page-resources-nn88-mobile-app-guide__section--final-cta .page-resources-nn88-mobile-app-guide__section-title {
    color: var(--page-secondary-color);
}

.page-resources-nn88-mobile-app-guide__section--final-cta .page-resources-nn88-mobile-app-guide__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-nn88-mobile-app-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-nn88-mobile-app-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-nn88-mobile-app-guide__content-row {
        flex-direction: column;
        gap: 30px;
    }
    .page-resources-nn88-mobile-app-guide__content-row--reverse {
        flex-direction: column-reverse;
    }
    .page-resources-nn88-mobile-app-guide__section-title {
        font-size: 2em;
    }
    .page-resources-nn88-mobile-app-guide__features-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-nn88-mobile-app-guide__feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-resources-nn88-mobile-app-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-nn88-mobile-app-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-nn88-mobile-app-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-nn88-mobile-app-guide__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-resources-nn88-mobile-app-guide__section {
        padding: 40px 0;
    }
    .page-resources-nn88-mobile-app-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-nn88-mobile-app-guide__feature-item,
    .page-resources-nn88-mobile-app-guide__faq-item,
    .page-resources-nn88-mobile-app-guide__step-list li {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-nn88-mobile-app-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-nn88-mobile-app-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-nn88-mobile-app-guide__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-resources-nn88-mobile-app-guide__btn--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}