/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  color: #262626;
  height: 100%;
  overflow-y: auto;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styling - Keep This Same Across All Pages */
.site-header {
  background: #262626;
  padding: 15px 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  transition: background 0.3s;
  border-radius: 4px;
}

.nav-list li a.active,
.nav-list li a:hover {
  background: #cdd855;
}

/* Responsive Stack on Mobile */

@media (max-width: 768px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}



/* Banner */
.banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Intro Section */
.intro {
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.intro h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.intro p {
  font-size: 18px;
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
}
.member {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.member.reverse {
  flex-direction: row-reverse;
}
.member img {
  width: 280px;
  border-radius: 10px;
}
.member div {
  flex: 1;
  min-width: 250px;
}
.member h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.member p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: #262626;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: auto;
}
.site-footer .social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.site-footer .social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}
.site-footer .social a:hover img {
  transform: scale(1.1);
}