body {
  margin: 0;
  background-color: #faf8f0;
  color: #1d1d1f;
}

.clients-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.clients-section h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
  font-family: "Alice", sans-serif;
  margin: 2rem 0;
}

.clients-section p.subheading {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3rem;
  color: #555;
}

.section-subtitle {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.client-card {
  background-color: #f0ede4;
  padding: 1.5rem;
  border-radius: 10px;
  width: calc(50% - 1rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-4px);
}

.client-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.client-card h3 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  font-family: "Alice", sans-serif;
}

.client-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.client-card .tag {
  margin-top: 0.8rem;
  font-weight: bold;
  font-size: 0.9rem;
  color: #111;
}

.client-social {
  font-weight: 600;
}

@media (max-width: 768px) {
  .client-card {
    width: 100%;
  }

  .clients-section p.subheading {
    font-size: 0.95rem;
  }
}
