body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background-color: #004080;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  background-color: #003366;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

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

nav ul li a:hover {
  text-decoration: underline;
}

.header-img img {
  max-width: 200px;
  margin-bottom: 1rem;
}

main {
  max-width: 1000px;
    margin: auto;
    padding: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
  margin-top: 2rem;
}

.logo {
  max-height: 70px;
  float: left;
  margin-right: 1rem;
}

.split-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2rem;
}

.left-split, .right-split {
  flex: 1;
  padding: 1rem;
}

.intro-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: #004080;
  color: white;
}

thead th {
  padding: 0.75rem 1rem;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody td {
  padding: 0.75rem 1rem;
  color: #333;
}

tbody tr:hover {
  background-color: #e6f2ff;
  transition: background-color 0.2s ease-in-out;
}
   .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 2rem;
    }

    .chip-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
    }

    .chip-card img {
      width: 250px;
      height: 250px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    .chip-card h3 {
      margin: 0.5rem 0 0;
      font-size: 1.1rem;
      color: #004080;
    }

    .chip-card p {
      padding: 0 1rem 1rem;
      font-size: 0.95rem;
      color: #333;
    }
    
    .latest-updates {
  padding: 2rem;
  background-color: #f5faff;
  text-align: center;
  border-top: 2px solid #e0e0e0;
  margin-top: 2rem;
}

.latest-updates h2 {
  font-size: 1.5rem;
  color: #004080;
  margin-bottom: 1rem;
}

.latest-updates ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}

.latest-updates li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
  color: #333;
}


.two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem 0;
}

.left-column,
.right-column {
  flex: 1 1 45%;
  box-sizing: border-box;
}


.intro-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.right-column h2 {
  color: #004080;
  margin-bottom: 0.5rem;
}

.right-column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
  }

  .right-column {
    margin-top: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  nav li {
    margin: 0.5rem 0;
  }

  header h1, header h2 {
    font-size: 1.3rem;
  }

  .latest-updates ul {
    padding-left: 1rem;
  }

  footer {
    text-align: center;
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  /* Existing mobile tweaks (if any) remain untouched */

  /* Responsive layout for about.html */
  .split-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .left-split, .right-split {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
    text-align: left;
  }
}
