:root {
  /* Colors - Adjusted for WCAG AAA */
  --primary-color: #045211; /*#003366;  Darker blue for AAA contrast */
  --dark-color: #000; /* Pure black for text */
  --light-color: #fff; /*Pure white for text and backgrounds */
  --secondary-white: #EBEDD6;/*#333; #FDFEE6 #c5cba1 Dark gray for subtle backgrounds */ 
  --nav-link-bg: #045211; /* #555; Darker gray for nav links */
  --nav-link-hover: #777; /* #777; */
  --nav-link-active: #444; /* A new, darker shade for the active state */
  --white-color: #fff;
  --light-gray-border: #999; /* Darker border for better contrast */
  --table-header-bg: #ccc; /* Lighter gray for headers */
  --table-odd-row-bg: #f2f2f2; /* Lighter shade for contrast */
  --test-color: #dbdbb7;
  --test-color2: #c5cba1;
  --shadow-color: rgba(0, 0, 0, 0.2); /* Darker shadow for visibility */

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.25rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Font Sizes */
  --font-size-sm: 0.9em;
  --font-size-md: 1.8em;
  --font-size-lg: 2.5em;
  --font-size-xl: 3em;

  /* Layout */
  --max-width: 1200px;
}

/* --- Basic Resets and Box Sizing --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff /* --- #fff --- */
  color: var(--dark-color);
}

/* --- Container for overall page width --- */
.main-content,
.site-header,
.site-nav,
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-sm);
}

/* --- Header Styles --- */
.site-header {
  background-color: var(--primary-color); 
  color: var(--secondary-white);
  padding: var(--spacing-lg) var(--spacing-sm);
  text-align: left;
  border-radius: 8px; /* --- Added to add a border to the Header --- */
  box-shadow: 0 2px 5px var(--shadow-color); /* --- Added to add a border to the Header --- */
}

.site-header h1 {
  margin: 0;
  font-size: var(--font-size-md);
}

/* --- Navigation Styles - Updated for a smoother feel --- */
.site-nav {
  background-color: var(--secondary-white); /* --- var(--secondary-white) --- */
  padding: var(--spacing-sm);
  text-align: left;
  border-radius: 8px; /* --- Added to add a border to the Nav --- */
  box-shadow: 0 2px 5px var(--shadow-color); /* --- Added to add a border to the Nav--- */
}

.site-nav ul {
  list-style: none;
}

.site-nav li {
  margin-bottom: var(--spacing-xs);
}

.site-nav a {
  display: block;
  color: var(--secondary-white); /* var(--secondary-dark);  */
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background-color: var(--nav-link-bg);
  border-radius: 4px;
  transition: all 0.3s ease; /* All-in-one transition for a smooth effect */
}

.site-nav a:hover,
.site-nav a:focus {
  background-color: var(--nav-link-hover); 
}

.site-nav a:active {
  background-color: var(--nav-link-active); 
  transform: translateY(1px); /* Creates a subtle "push" effect */
}

/* --- Main Content and Columns --- */
.main-content {
  padding: var(--spacing-lg) var(--spacing-sm);
}

/* Refactored grouping for efficiency */
.column,
.two-column-row,
.support-providers-row {
  background-color: var(--light-color); /* var(--light-color); */
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--primary-color); /* 0 2px 5px var(--shadow-color) */
}

.two-column-row,
.support-providers-row {
  margin-top: var(--spacing-md); /* lg */
  margin-bottom: var(--spacing-md);
}

.column-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.column-container h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  margin-top: var(--spacing-sm);
  text-align: left;
}

.section-text {
  margin-bottom: var(--spacing-md);
}

.two-column-row > h2 {
  text-align: center;
  margin-bottom: var(--spacing-xs);
  /*text-decoration: underline; */
  color: var(--primary-color);
}

.column h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

/*.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
} */

.responsive-image {
  /*border: 1px solid var(--shadow-color);  var(--primary-color) */
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 25px;
  border-radius: 5px;
  margin: 0 auto;
}

.support-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.support-content ul {
  padding-left: 40px;
}

/* --- Table Styles for Contact Information --- */
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.contact-table th,
.contact-table td {
  padding: 12px;
  border: 1px solid var(--light-gray-border);
  text-align: left;
}

.contact-table thead th {
  background-color: var(--table-odd-row-bg);
  color: var(--dark-color);
  font-weight: bold;
}

/*.contact-table tbody tr:nth-child(odd) {
  background-color: var(--table-odd-row-bg);
} */

/* --- Footer Styles --- */
.site-footer {
  background-color: var(--primary-color); /* --- dark-color --- */
  color: var(--secondary-white); /* --- white-color --- */
  padding: var(--spacing-sm) var(--spacing-sm);
  margin-top: var(--spacing-xl); /* --- xl --- */
  border-radius: 8px; /* --- Added to add a border to the Footer --- */
  box-shadow: 0 2px 5px var(--shadow-color); /* --- Added to add a border to the Footer --- */
}

.site-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* --- 15px --- */
}

.site-footer .footer-links {
  margin-bottom: 0;
  text-align: center;
}

.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.site-footer .footer-links a {
  color: var(--secondary-white); /* --- white-color --- */
  text-decoration: none;
  font-size: var(--font-size-sm);
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.site-footer .footer-links a:hover {
  background-color: var(--nav-link-hover);
}

/* --- Added for Footer effects on links --- */
.site-footer a:hover,
.site-footer a:focus {
  background-color: var(--nav-link-hover); 
}

/* --- Media Queries for Larger Screens (768px and up) --- */
@media (min-width: 768px) {
  .site-header h1 {
    font-size: var(--font-size-lg);
  }

  .site-nav ul {
    display: flex;
    justify-content: flex-start;
  }

  .site-nav li {
    margin: 0 10px 0 0;
  }

  .site-nav a {
    display: inline-block;
  }

  .support-providers-row {
    flex-direction: row;
  }

  .support-providers-row > .column {
    flex: 1 1 calc(50% - (var(--spacing-md) / 2));
  }

  .two-column-row > .column-container {
    flex-direction: row;
  }

  .two-column-row > .column-container > .column {
    flex: 1 1 calc(50% - (var(--spacing-md) / 2));
  }

  .site-footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .site-footer-content .footer-links {
    margin-top: 15px;
    text-align: center;
  }
}

/* --- Media Queries for Even Larger Screens (1024px and up) --- */
@media (min-width: 1024px) {
  .site-header h1 {
    font-size: var(--font-size-xl);
  }
}

/* Add a clear focus outline for keyboard users */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}