/* style/resources.css */

/* --- Base Styles --- */
.page-resources {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

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

.page-resources__section {
  padding: 60px 0;
  color: #333333; /* Default for light sections */
  background-color: #ffffff; /* Default for light sections */
}

.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__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333; /* Ensure readability on white background */
}

.page-resources__text-center {
  text-align: center;
}

/* --- Buttons --- */
.page-resources__btn-primary,
.page-resources__btn-secondary,
.page-resources__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For responsiveness */
  box-sizing: border-box; /* For responsiveness */
  white-space: normal; /* For responsiveness */
  word-wrap: break-word; /* For responsiveness */
}

.page-resources__btn-primary {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-resources__btn-primary:hover {
  background-color: #1a7bbd; /* Darker shade */
  border-color: #1a7bbd;
}

.page-resources__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Brand color */
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-resources__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources__btn-link {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid transparent;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-resources__btn-link:hover {
  text-decoration: underline;
}

/* --- Hero Section --- */
.page-resources__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: var(--dark-bg-1); /* Ensure it's dark for light text */
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources__hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: left;
  padding: 20px;
  margin-right: 40px;
}