.issues-page {
  width: 60%;
}

.intro-message {
  background-color: #fff;
  padding: 2rem;
  border-left: 5px solid var(--blue); /* Deep blue accent */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.intro-message h1 {
  font-size: 2rem;
  margin-top: 0;
  color: var(--blue);
}

.intro-message p {
  margin-bottom: 1.5rem;
}

.intro-message h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 0;
}

.issue {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ccc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
}

.issue:hover {
  border-color: var(--blue);
  background-color: var(--background-blue);
  transform: scale(1.025);
}

.issue h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--blue);
}

.issue p {
  margin: 0.5rem 0 0 0;
}

hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 2rem 0;
}

.cta {
  background-color: var(--blue); /* Deep blue background for contrast */
  color: #fff;
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.cta h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sub-cta {
  margin-bottom: 2rem;
}

.sub-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #f0f0f0;
}

.sub-cta p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #e1e1e1;
}

.cta-button {
  background-color: var(--contrast);
  color: var(--blue);
  border: none;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-align: center;
  user-select: none;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--dark-contrast);
  color: #fff;
  outline: none;
}

.sub-cta:last-child {
  margin-bottom: 0;
}




/* Mobile-friendly tweaks */
@media (max-width: 600px) {
  .issues-page {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 0.5rem;
  }

  .intro-message {
    padding: 1.5rem 1rem;
  }

  .intro-message p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .intro-message h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .intro-message h2 {
    font-size: 1.1rem;
    text-align: center;
  }

  .issue {
    padding: 1.25rem 1rem;
  }

  .issue h3 {
    font-size: 1rem;
  }

  .issue p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .cta {
    padding: 2rem 1rem;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .sub-cta h3 {
    font-size: 1.15rem;
  }

  .sub-cta p {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}
