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

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;             /* fixed height */
  box-sizing: border-box;   /* include padding inside height */
  padding: 0 2rem;          /* horizontal padding only */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}


nav .logo {
  font-weight: bold;
  width: 60px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav ul li {
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
}

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

.current {
  text-decoration: underline;
  color: #333;
}

/* News Container */
.news-container {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* News Article */
.news-article {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid #007BFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.news-article h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #222;
}

.news-article .date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}