.mou-section {
  padding: 2rem;
  background-color: #f8fafc;
  text-align: center;
}


.mou-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.mou-list li {
  counter-increment: mou;
  margin-bottom: 1rem;
  gap: 0.75rem;
  display: flex;
  align-items: center;
}



.mou-list li::before {
  content: counter(mou) ".";
  font-weight: bold;
  margin-right: 0.75rem;
  color: #0f172a;
  font-size: 1rem;
  flex-shrink: 0;
  /* vertical-align: middle; */
  text-align: right;
  width: 3rem;
}

.mou-list a {
  display: inline-block;
  width: calc(100% - 2rem);
  background-color: #fff;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
  vertical-align: middle;
}

.mou-list a:hover {
  background-color: #e0e7ff;
  color: #1d4ed8;
  border-color: #c7d2fe;
}


@media (max-width: 600px) {
  .mou-section {
    padding: 1rem;
  }

  .mou-list li::before {
    font-size: 0.9rem;
    width: 2rem;
    margin-right: 0.9rem;
  }

  .mou-list a {
    font-size: 1rem;
    padding: 0.6rem;
    border-radius: 10px;
  }

  .mou-list li {
    gap: 0.5rem;
  }
}
