/* style/resources.css */

/* Base styles for the page content */
.page-resources {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: var(--secondary-color, #FFFFFF); /* Body background is white */
}

.page-resources__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources__section {
    padding: 60px 0;
    margin-bottom: 30px;
}

.page-resources__section--light {
    background-color: var(--secondary-color, #FFFFFF);
    color: #333333;
}

.page-resources__section--dark {
    background-color: var(--primary-color, #017439);
    color: #ffffff;
}

/* Specific dark section for news, slightly different shade */
.page-resources__section--dark-alt {
    background-color: #005f2e; /* Slightly darker shade of primary for contrast */
    color: #ffffff;
}

.page-resources__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color, #017439);
}

.page-resources__section-title--white {
    color: #ffffff;
}