.page-news {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0d0d0d; /* Matching body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header */
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-news__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-news__section-description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__hero-section {
  padding-top: 10px; /* Specific padding for hero section to avoid header overlap */
  padding-bottom: 80px;
  background: linear-gradient(135deg, #1A202C 0%, #0d0d0d 100%);
  text-align: center;
  color: #ffffff;
}

.page-news__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-news__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news__cta-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-news__btn-primary:hover {
  background: #e0b800;
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news__btn-secondary {
  background: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-news__btn-secondary:hover {
  background: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news__featured-articles {
  padding: 80px 0;
  background-color: #151a24; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news__article-card {
  background: #1A202C; /* Dark card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news__article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-news__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news__article-content {
  padding: 25px;
}

.page-news__article-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700; /* Gold for article titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__article-excerpt {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.page-news__article-date {
  font-size: 14px;
  color: #999999;
  display: block;
}

.page-news__latest-updates {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-news__update-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news__update-item {
  margin-bottom: 20px;
  background: #1A202C;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-news__update-item:hover {
  background-color: #2a3447;
}

.page-news__update-link {
  display: block;
  padding: 25px;
  text-decoration: none;
  color: inherit;
}

.page-news__update-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for update titles */
  margin-bottom: 10px;
}

.page-news__update-excerpt {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
}

.page-news__update-date {
  font-size: 14px;
  color: #999999;
}

.page-news__categories {
  padding: 80px 0;
  background-color: #151a24;
  color: #f0f0f0;
}

.page-news__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-news__category-card {
  background: #1A202C;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__category-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block; /* Ensure it behaves as a block element */
}

.page-news__category-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for category titles */
  margin-bottom: 10px;
}

.page-news__category-desc {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.5;
}

.page-news__about-news {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-news__about-news p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cccccc;
  text-align: justify;
}

.page-news__contact-info {
  padding: 80px 0;
  background-color: #151a24;
  color: #f0f0f0;
}

.page-news__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.page-news__contact-item {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-news__contact-link {
  color: #FFD700; /* Gold for contact links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__contact-link:hover {
  color: #e0b800;
  text-decoration: underline;
}

/* Common dark background sections */
.page-news__dark-section {
  background-color: #1A202C;
  color: #ffffff;
}

.page-news__light-bg {
  background-color: #151a24;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 42px;
  }
  .page-news__section-title {
    font-size: 32px;
  }
  .page-news__hero-description,
  .page-news__section-description,
  .page-news__article-excerpt,
  .page-news__update-excerpt,
  .page-news__category-desc,
  .page-news__about-news p,
  .page-news__contact-item {
    font-size: 16px;
  }
  .page-news__article-title,
  .page-news__update-title,
  .page-news__category-title {
    font-size: 20px;
  }
  .page-news__article-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
  }
  .page-news__container {
    padding: 30px 15px;
  }
  .page-news__hero-section {
    padding-bottom: 60px;
  }
  .page-news__main-title {
    font-size: 36px;
  }
  .page-news__section-title {
    font-size: 28px;
  }
  .page-news__hero-description,
  .page-news__section-description {
    margin-bottom: 30px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__cta-button {
    width: 100% !important;
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-news__articles-grid,
  .page-news__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__article-content,
  .page-news__update-link,
  .page-news__category-card {
    padding: 20px;
  }
  .page-news__category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-news__about-news p {
    font-size: 15px;
  }
  /* Ensure all images are responsive */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__article-card,
  .page-news__update-item,
  .page-news__category-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }
  /* Video section specific mobile padding */
  .page-news__hero-section {
    padding-top: 10px !important; /* Mobile specific padding */
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: 30px;
  }
  .page-news__section-title {
    font-size: 24px;
  }
  .page-news__hero-description,
  .page-news__section-description,
  .page-news__article-excerpt,
  .page-news__update-excerpt,
  .page-news__category-desc,
  .page-news__about-news p,
  .page-news__contact-item {
    font-size: 14px;
  }
  .page-news__article-title,
  .page-news__update-title,
  .page-news__category-title {
    font-size: 18px;
  }
  .page-news__article-image {
    height: 160px;
  }
  .page-news__cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
}