.faaliyetler-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.faaliyetler-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.faaliyetler-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.faaliyet-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.3s ease;
}

.faaliyet-card:hover {
  transform: scale(1.05);
}

.faaliyet-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faaliyet-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
}

.faaliyet-card p {
  font-size: 14px;
  padding: 0 15px 20px;
}
