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

/* General styling for the page content */
.page-resources-mobile-app-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background */
}

/* Section styling */
.page-resources-mobile-app-guide__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color for titles */
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-resources-mobile-app-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Hero Section */
.page-resources-mobile-app-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    color: #FFFFFF;
    background-color: #017439; /* Dark background for hero */
    overflow: hidden;
}

.page-resources-mobile-app-guide__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}