/* style/resources.css */

/* --- General Page Styling --- */
.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f4f4f4; /* Inherited from shared, explicitly set for context */
}

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

.page-resources__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources__section--light {
  background-color: #ffffff;
}

.page-resources__dark-section {
  background-color: #0A1931;
  color: #ffffff;
}

.page-resources__section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0A1931;
  font-weight: bold;
}

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

.page-resources__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-resources__section-description--light {
  color: #f0f0f0;
}

/* --- Hero Section --- */
.page-resources__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark gradient background for hero */
  color: #ffffff;
}