*:not(i) {
    font-family: CPN, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header .header-bar {
    background-color: #fff;
    color: #e57200;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    box-shadow: 2px 2px 2px #00000050;
}

.logo {
  height: 50px;
}

.menu_header a {
  color: #000;
  margin: 0 10px;
  text-decoration: none;
}

.menu_hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu_header {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .menu_header {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 10px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    border: 1px solid #ccc;
    z-index: 999;
  }

  .menu_header.show {
    display: flex;
  }
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

/* News Section */
.news {
  padding: 20px;
  background-color: #f5f5f5;
}

.news h2 {
  color: #e57200;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.news-card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-card .content {
  padding: 10px;
}

footer {
  background-color: #e57200;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu_header {
    display: none;
  }
  .menu_hamburger {
    display: block;
  }
}
