header {
  background: linear-gradient(to bottom, #222, #111);
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffdb58;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #aaa;
  font-weight: 400;
}

main {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 3rem;
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

section:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #eee;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #333;
  padding-bottom: 0.75rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}

section ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 1rem;
}

section ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
  color: white;
}

section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #aaa;
}

.team-member {
  text-align: center;
  background-color: #222;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.team-member img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.team-member p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.4;
}

footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid #333;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.partner-card {
  text-align: center;
  background-color: #222;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.partner-card img {
  width: 80%;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  aspect-ratio: 16/9;
  object-fit: contain;
}

.partner-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #eee;
  margin-bottom: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section h2 {
    font-size: 1.75rem;
  }

  section p {
    font-size: 1rem;
  }

  .team-member h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 0.9rem;
  }

  section {
    padding: 1.5rem;
  }
  .team-member {
    padding: 1rem;
  }
}
