/* style/resources.css */

/* Base Styles for .page-resources - assuming a dark body background from shared.css */
.page-resources {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark background */
    background-color: transparent; /* Inherit from body, or if specific section has bg */
}

/* Header Offset for the first section */
.page-resources__hero-section {
    padding-top: var(--header-offset, 120px);
}

/* Container for content sections */
.page-resources__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Section Styling */
.page-resources__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly off-white for paragraphs */
}

.page-resources__highlight {
    color: #26A9E0;
    font-weight: bold;
}

/* Hero Section */
.page-resources__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1a1a1a; /* A dark background for hero */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-resources__hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 1;}