.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-header {
  margin-bottom: 40px;
}

.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.sponsor-logo img {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.sponsor-logo img:hover {
  transform: scale(1.1);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  transition: box-shadow 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.team-info {
  max-width: calc(100% - 170px);
}

.team-info h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #333;
}

.team-info p {
  margin: 5px 0;
  color: #555;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .team {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .team {
    grid-template-columns: 1fr;
  }
}
