.page-resources-fb88-login-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: var(--secondary-color, #FFFFFF); /* Assuming body background is light */
}

/* Hero Section */
.page-resources-fb88-login-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #017439; /* Primary brand color for hero background */
    color: #FFFFFF;
    overflow: hidden; /* Prevent content overflow */
}

.page-resources-fb88-login-guide__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
    z-index: 1;
}

.page-resources-fb88-login-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Use custom font color for emphasis */
    line-height: 1.2;
}

.page-resources-fb88-login-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-resources-fb88-login-guide__hero-description a {
    color: #FFFF00;
    text-decoration: underline;
}

.page-resources-fb88-login-guide__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-fb88-login-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
}

.page-resources-fb88-login-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* General Content Sections */
.page-resources-fb88-login-guide__content-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: #333333;
}

.page-resources-fb88-login-guide__content-section:nth-child(even) {
    background-color: #f8f8f8; /* Slightly different background for alternating sections */
}

.page-resources-fb88-login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-fb88-login-guide__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-resources-fb88-login-guide__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-resources-fb88-login-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #333333;
}

.page-resources-fb88-login-guide__paragraph a {
    color: #017439;
    text-decoration: underline;
}