:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --button-register: #C30808;
  --button-login: #C30808;
  --button-font-color: #FFFF00;
  --background-color: #FFFFFF;
}

/* Base styles for the page content */
.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-color); /* Default white background */
}

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

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

.page-resources__section-title--white {
  color: var(--text-light);
}

.page-resources__text-white {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 30px;
}

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