  #header {
        background-color: black; /* Set the background color of the navigation bar to black */
        position: fixed; /* Ensure header is fixed at the top */
        width: 100%; /* Ensure header spans full width */
        z-index: 1000; /* Ensure header is above other content */
      }
    
      .main {
        margin-top: 70px; /* Adjust this value as needed */
      }
    
      .content-section {
        padding: 40px 20px;
        text-align: center;
        background-color: white; /* Optional for better visibility */
        border: 1px solid red; /* Optional for debugging */
      }
      .team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .team-member .pic img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.team .team-member:hover .pic img {
  transform: scale(1.05);
}

.team .team-member h4 {
  font-weight: 700;
  margin: 10px 0;
  font-size: 18px;
}

.team .team-member p {
  margin-bottom: 15px;
}

.team .swiper-wrapper {
  display: flex;
}

.team .swiper-slide {
  padding: 15px;
}

.team .slider-nav a {
  color: var(--contrast-color);
  font-size: 24px;
  margin-left: 10px;
}

.more.dark {
  color: var(--accent-color);
}

.more.dark:hover {
  color: var(--contrast-hover-color);
  text-decoration: underline;
}
/* Adjust margins between section title and content */
.section-title {
  margin-bottom: 10px; /* Adjust this value to control spacing */
  padding-bottom: 0;
}

.team.section .swiper {
  margin-top: 0; /* Ensure no extra space above the swiper */
}

.team.section h3 {
  margin-top: 0; /* Ensure no extra space above heading */
  margin-bottom: 10px; /* Reduce space below the heading */
}
