* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

header {
  background: #111;
  color: white;
  padding: 20px;
}

header h1 {
  margin: 0 0 12px;
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main {
  max-width: 1000px;
  margin: 24px auto;
  padding: 0 16px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background: #222;
  color: white;
}

@media (max-width: 600px) {
  table {
    font-size: 14px;
  }

  th, td {
    padding: 8px;
  }
}

/* Social Media Page */

.social-section {
  text-align: center;
  padding: 30px 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-card {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.social-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.social-card p {
  margin: 0;
}


/* Logo Header */

.site-header {
  padding: 20px;
  text-align: center;
}

.header-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.header-title-row h1 {
  margin: 0;
}

.site-logo {
  width: 60px;
  height: auto;
}

.nav-menu {
  margin-top: 16px;
}

.nav-menu a {
  margin: 0 10px;
}

/* Teams Page */

.conferences-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  flex-wrap: wrap;
}

.conference {
  width: 45%;
  min-width: 300px;
  text-align: center;
}

.conference h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.team-card p {
  margin-top: 8px;
  font-weight: bold;
  font-size: 18px;
}