body {
  margin: 0;
  padding: 0;
  padding-top: 76px; /* Account for fixed navbar */
  background-color: #f8f9fa;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

h1 {
  color: #212529;
  text-align: center;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: bold;
}

h2 {
  color: #343a40;
  border-bottom: 3px solid #dc3545;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 2rem;
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 40px;
  line-height: 1.6;
}

.accordion-item {
  border: none !important;
  margin-bottom: 20px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header .accordion-button {
  background: #343a40 !important;
  color: white !important;
  border: none !important;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px !important;
}

.accordion-header .accordion-button:not(.collapsed) {
  background: #212529 !important;
  border-radius: 15px 15px 0 0 !important;
}

.accordion-header .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Make accordion arrows white */
.accordion-button::after {
  filter: brightness(0) invert(1) !important;
}

.accordion-body {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 0 0 15px 15px;
}

.team-photo {
  border-radius: 50%;
  width: 120px !important;
  height: 120px !important;
  object-fit: cover;
  border: 4px solid #dc3545;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.team-photo:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.team-member {
  transition: transform 0.3s ease;
}

.team-member a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-member a:hover {
  color: inherit;
  text-decoration: none;
}

.team-member:hover {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
}

.team-member a:hover {
  color: #dc3545;
}

.team-member small {
  color: #7f8c8d;
  font-style: italic;
}

.partner-logo {
  width: 90%;
  max-height: 60px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.partner-logo:hover {
  transform: scale(1.1);
}

.partner-section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.partner-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.partner-section a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
}

.partner-section a:hover {
  color: #667eea;
}

.partner-section ul {
  margin-top: 15px;
  padding-left: 20px;
}

.partner-section li {
  color: #555;
  margin-bottom: 5px;
}

/* Logo styling in accordion headers */
.accordion-button img {
  border-radius: 8px;
  background: white;
  padding: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    margin: 10px;
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .team-photo {
    width: 100px !important;
    height: 100px !important;
  }
}
