* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: sans-serif;
  line-height: 1.6;
  padding-bottom: 3rem;
  background: #fff;
  color: #222;
}
nav {
  background: #333;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
main {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADINGS */
h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.2rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
}
h3 {
  margin: 0.75rem 0 0.25rem;
}

/* TABLE */
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 2rem;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.75rem;
}
th {
  background: #f4f4f4;
}

/* VIDEO GALLERY */
#video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-block video {
  width: 100%;
  border-radius: 10px;
}
.video-block h3 {
  font-size: 1rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* TEAM PAGE */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* HOMEPAGE IMAGE */
.responsive-image {
  width: 100%;
  max-width: 600px;
  margin: 1rem auto;
  display: block;
  border-radius: 10px;
}

/* MOBILE TWEAKS */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  nav {
    flex-direction: column;
    align-items: center;
  }
}
