/* style/resources.css */

/* Base styles for the page content, ensuring text color contrasts with dark body background */
.page-resources {
    color: #ffffff; /* Light text for dark body background #121212 */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-resources__hero-section {
    position: relative;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1a1a1a; /* Slightly lighter dark background for hero */
    overflow: hidden; /* Prevent image overflow */
}