/*Navbar Style*/
nav {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

nav a {
  color: #000000;
  text-decoration: none;
  margin: 0 15px;
  padding: 5px 0;
  position: relative;
}

nav a:hover {
  color: #000000;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -2px;
}

nav a:hover::after {
  width: 100%;
}

nav .cta-button {
  border: 2px solid #000000;
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
  height: 50px;
  padding: 8px 18px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

nav .cta-button:hover {
  background: #000000;
  color: #ffffff;
}

.modal-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0px;
  margin: 20px 0;
}

.modal-list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-list-container a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.modal-list-container a:hover {
  color: #22e37d;
  text-decoration: underline;
}

.modal-list-container h2,
.modal-list-container h3 {
  margin: 0;
  /* margin-bottom: 10px; */
  /* consistent spacing below headers */
  font-size: 1rem;
  color:black;
  text-transform: uppercase;
}