/* style/sv388-beginner-guide.css */

/* Base styles for the page content */
.page-sv388-beginner-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #FFFFFF; /* Explicitly white background */
}

/* Header offset for fixed header */
.page-sv388-beginner-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Sections */
.page-sv388-beginner-guide__section {
    padding: 60px 20px;
    text-align: center;
}

.page-sv388-beginner-guide__dark-bg {
    background-color: #017439; /* Brand primary color */
    color: #ffffff; /* White text for dark background */
}

.page-sv388-beginner-guide__light-bg {
    background-color: #FFFFFF; /* Auxiliary color or default light background */
    color: #333333; /* Dark text for light background */
}

.page-sv388-beginner-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section Specifics */
.page-sv388-beginner-guide__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    color: #ffffff;
}

.page-sv388-beginner-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* NO CSS FILTER ALLOWED */
}

.page-sv388-beginner-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2;
}

.page-sv388-beginner-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-sv388-beginner-guide__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-sv388-beginner-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}