/* style/resources-123b-con-guide.css */

/* Base styles for the page content area */
.page-resources-123b-con-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #0a0a0a, so text should be light */
    background-color: #0a0a0a; /* Ensure consistency with body background if shared.css doesn't set it */
}

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

/* General section styling */
.page-resources-123b-con-guide__section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-123b-con-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for smaller screens */
    box-sizing: border-box;
}

.page-resources-123b-con-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-resources-123b-con-guide__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #017439; /* Brand color for sub-titles */
}

.page-resources-123b-con-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-resources-123b-con-guide__text-block--center {
    text-align: center;
}

.page-resources-123b-con-guide__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    text-align: left;
    color: #f0f0f0;
}

.page-resources-123b-con-guide__list li {
    margin-bottom: 10px;
}

/* Hero Section */
.page-resources-123b-con-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.page-resources-123b-con-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-123b-con-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-123b-con-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-123b-con-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}