/* =========================
   MOU Section Styles
========================= */
.mou-section {
  padding: 0px 0px;
  background: #ffffff;
  text-align: center;
}

.mou-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.mou-container {
  max-width: 1300px;
  margin: 0 auto;
}

.mou-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  justify-content: center;
  align-items: stretch;
}

.mou-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 5px;
  transition: all 0.3s ease;
}

.mou-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.mou-logo img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

.mou-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.mou-info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 768px) {
  .mou-title {
    font-size: 1.8rem;
  }
  .mou-card {
    padding: 20px;
  }
  .mou-info h3 {
    font-size: 1.1rem;
  }
}
