.header {
  text-align: center;
  padding: 20px;
  margin-top: 200px;
  margin-bottom: 1rem;
  background-color: #161616;
  color: white;
  border-color: #EDB115;
}

.news-container {
  width: 87%;
  margin: 0 auto;
  background: #111;
  padding: 20px;
  margin-top: 1rem;
  font-family: Arial, sans-serif;
}

.grid-news {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  justify-content: center;
}

.grid-news .news-item.large {
  grid-row: span 2;
}

.grid-life {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  transform: scale(1.02);
}

.news-item img {
  width: 100%;
  height: auto;
  display: block;
}

.news-text {
  padding: 15px;
  background: #222;
  color: white;
}

.news-title-main {
  font-size: 1.975rem;
  font-weight: bold;
}

.news-title-secondary {
  font-size: 1.6rem;
  font-weight: bold;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.news-description {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 1rem;
  color: #ccc;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f5e2d5;
  padding-bottom: 5px;
  margin-top: 1rem;
  color: white;
  text-align: center;
}

.news-image-small {
  width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .grid-news {
    grid-template-columns: 1fr;
  }
  .grid-life {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-life {
    grid-template-columns: 1fr;
  }
}

.btn-outline-light {
  border-color: #f8f1e5;
  color: #f8f1e5;
}


.dropdown-menu {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  background-color: #161616;
  color: white;
}

.option_dropdown {
  color: white !important
}

.mt-200 {
  margin-top: 200px !important;
}