/* style/resources-jun88-login-guide.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #EA7C07;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-color-light: #FFFFFF;
    --border-color: #e0e0e0;
}

.page-resources-jun88-login-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-color-light); /* Assuming body is light, main content text is dark */
}

/* Hero Section */
.page-resources-jun88-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: #f0f8ff; /* Light blue background for hero section */
    overflow: hidden;
}

.page-resources-jun88-login-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-jun88-login-guide__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-jun88-login-guide__hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-resources-jun88-login-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -80px; /* Overlap with image for visual effect */
}