body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
  gap: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 20px 0;
}

.logo img {
  height: 29px;
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 40px;
}

.news-header {
    width: 100vw;
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw);
    padding: 100px 20px 0px 20px;
    box-sizing: border-box;
    border-top: 1px solid #ffffff;
    background: linear-gradient(to top, #ffffff66, #6fd2dd66);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.news-title h1 {
  font-size: 64px;
  text-align: center;
  margin: 0;
  position: relative; 
  top: -30px; 
}

.news-title p {
  font-size: 20px;
  font-weight: bold;
  color: #6f6f6f;
  text-align: center;
  margin: 0;
  position: relative; 
  top: -25px; 
}

.news-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin-top: 10px;
}

.news-item {
  position: relative;
  background: white;
  border: 0.2px solid black;
  border-radius: 10px;
  padding: 50px 30px 30px 30px;
  box-sizing: border-box;
  max-width: 1000px; 
  margin: 0 auto;   
  min-height: 250px; 
  width: 100%;
  min-width: 600px; 
}

.news-date-row {
  display: flex;
  position: relative;
  top: 10px;
  gap: 770px; 
}

.news-date {
  font-size: 18px;
  margin: 0 0 15px 0;
}

.news-title-item {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 15px 0;
}

.news-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.page-btn, .page-number {
  font-size: 18px;
  padding: 5px 10px;
  cursor: pointer;
  user-select: none;
}

.page-number.active {
  font-weight: bold;
  text-decoration: underline;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;            
  padding: 25px 40px;
  background: white;        
  backdrop-filter: none;         
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;              
  box-sizing: border-box;
}

.nav-logo {
  position: absolute; 
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 25px;
  object-fit: contain;
}

.navigation-menu {
  display: flex;
  align-items: center;
  gap: 27px;
}

.navigation-menu a {
  font-size: 14px;
  font-weight: bold;
  color: black;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .navigation-menu {
    display: none;
  }
  .navigation {
    justify-content: flex-start;
    padding: 15px 20px;
  }
}