* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #f8f4e1;
  color: #4e1f00;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #4e1f00;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #f8f4e1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #feba17;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #f8f4e1;
  margin: 5px;
  transition: all 0.3s ease;
}

/* News Detail Section */
.news-detail {
  padding: 120px 50px 100px;
  text-align: center;
  background: linear-gradient(180deg, #f8f4e1, #74512d);
  margin-bottom: 50px;
}

.news-detail h1 {
  font-size: 48px;
  color: #feba17;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(78, 31, 0, 0.5);
}

.date {
  font-size: 18px;
  color: #74512d;
  margin-bottom: 30px;
}

.detail-img {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(78, 31, 0, 0.5);
}

.content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
  font-size: 18px;
  color: #74512d;
  line-height: 1.6;
}

.content p {
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  margin-bottom: 20px;
}

.content ul li {
  margin-bottom: 10px;
}

.content ul li strong {
  color: #feba17;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #feba17;
  border: none;
  color: #4e1f00;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 100px;
}

.cta-button:hover {
  background-color: #74512d;
  color: #f8f4e1;
  transform: translateY(-5px);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #4e1f00;
  color: #f8f4e1;
  margin-top: 200px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #4e1f00;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .news-detail {
    padding: 100px 20px 80px;
  }

  .news-detail h1 {
    font-size: 36px;
  }

  .detail-img {
    height: 250px;
  }

  .content {
    font-size: 16px;
  }
}
