.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .collaboration-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .partner-card {
    width: 100%;
    max-width: 280px;
  }
}

.section {
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #574937;
  text-align: center;
  margin-bottom: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(87, 73, 55, 0.1);
  margin-bottom: 2rem;
}

.card p {
  color: #8c8c82;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.partner-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 1rem 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(87, 73, 55, 0.1);
}

.partner-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem auto;
  display: block;
}

.partner-name {
  font-family: 'Marcellus', serif;
  text-shadow: 0.4px 0 0 currentColor;
  font-size: 1.1rem;
  color: #574937;
  margin-bottom: 0rem;
  margin-top: -0.5rem;
}

.partner-type {
  font-size: 0.95rem;
  color: #627045;
}
