.page-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news h1, .page-news h2, .page-news h3 {
  color: #1A2B42;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-news h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}

.page-news h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-news h3 {
  font-size: 1.6em;
}

.page-news .section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #555;
}

.page-news .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #1A2B42;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news .cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Banner */
.page-news .hero-banner {
  background: linear-gradient(135deg, #1A2B42 0%, #3a5072 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.page-news .hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(26,43,66,0) 70%);
  opacity: 0.3;
  animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-news .hero-banner .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-news .hero-banner h1 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-news .hero-banner p {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-news .hero-banner .cta-button {
  background-color: #FFD700;
  color: #1A2B42;
  padding: 18px 45px;
  font-size: 1.2em;
  border-radius: 50px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-news .hero-banner .cta-button:hover {
  background-color: #e6c200;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Latest Articles Section */
.page-news .latest-articles {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-news .news-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-news .news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-news .news-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news .news-card h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news .news-card h3 a {
  color: #1A2B42;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news .news-card h3 a:hover {
  color: #FFD700;
}

.page-news .news-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news .news-card .read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-news .news-card .read-more:hover {
  color: #1A2B42;
  text-decoration: underline;
}

/* News Categories Section */
.page-news .news-categories {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-news .category-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-news .category-list li {
  background-color: #f0f0f0;
  border-radius: 50px;
  padding: 10px 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news .category-list li:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-news .category-list li a {
  color: #1A2B42;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
}

.page-news .category-list li:hover a {
  color: #1A2B42;
}

/* FAQ Section */
.page-news .faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-news .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-news .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-news .faq-question:hover {
  background-color: #f5f5f5;
}

.page-news .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #1A2B42;
}

.page-news .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-news .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1A2B42;
}

.page-news .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
  color: #555;
}

.page-news .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-news .faq-answer p {
  margin: 0;
}

/* Call to Action Section */
.page-news .call-to-action {
  background: linear-gradient(90deg, #1A2B42, #3a5072);
  padding: 70px 20px;
  text-align: center;
  color: #ffffff;
}

.page-news .call-to-action h2 {
  color: #FFD700;
  font-size: 2.5em;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-news .call-to-action p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-news .call-to-action .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news .call-to-action .cta-button.primary {
  background-color: #FFD700;
  color: #1A2B42;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-news .call-to-action .cta-button.primary:hover {
  background-color: #e6c200;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.page-news .call-to-action .cta-button.secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-news .call-to-action .cta-button.secondary:hover {
  background-color: #FFD700;
  color: #1A2B42;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Floating Buttons */
.page-news .floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px; /* Adjust if footer is too tall */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-news .floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A2B42;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  line-height: 1.2;
  padding: 5px;
}

.page-news .floating-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news .hero-banner h1 {
    font-size: 2.8em;
  }
  .page-news .hero-banner p {
    font-size: 1.1em;
  }
  .page-news h2 {
    font-size: 1.8em;
  }
  .page-news .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news .news-card img {
    height: 200px;
  }
  .page-news .news-card h3 {
    font-size: 1.3em;
  }
  .page-news .call-to-action h2 {
    font-size: 2em;
  }
  .page-news .call-to-action p {
    font-size: 1em;
  }
  .page-news .floating-buttons {
    right: 15px;
    bottom: 80px;
  }
  .page-news .floating-button {
    width: 55px;
    height: 55px;
    font-size: 0.85em;
  }
}

@media (max-width: 768px) {
  .page-news .hero-banner {
    padding: 60px 15px;
  }
  .page-news .hero-banner h1 {
    font-size: 2.2em;
  }
  .page-news .hero-banner p {
    font-size: 1em;
  }
  .page-news .hero-banner .cta-button {
    padding: 15px 35px;
    font-size: 1em;
  }
  .page-news h1 {
    font-size: 2em;
  }
  .page-news h2 {
    font-size: 1.6em;
  }
  .page-news .latest-articles, .page-news .news-categories, .page-news .faq-section, .page-news .call-to-action {
    padding: 40px 0;
  }
  .page-news .articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news .news-card {
    margin-bottom: 20px;
  }
  .page-news .news-card img {
    height: 180px;
  }
  .page-news .card-content {
    padding: 20px;
  }
  .page-news .news-card h3 {
    font-size: 1.2em;
  }
  .page-news .category-list li {
    padding: 8px 20px;
    font-size: 0.95em;
  }
  .page-news .faq-question {
    padding: 15px 20px;
  }
  .page-news .faq-question h3 {
    font-size: 1.1em;
  }
  .page-news .faq-toggle {
    font-size: 1.5em;
  }
  .page-news .faq-answer {
    padding: 0 20px;
  }
  .page-news .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-news .call-to-action h2 {
    font-size: 1.8em;
  }
  .page-news .call-to-action p {
    font-size: 0.95em;
  }
  .page-news .call-to-action .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news .call-to-action .cta-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-news .floating-buttons {
    right: 10px;
    bottom: 60px;
    gap: 10px;
  }
  .page-news .floating-button {
    width: 50px;
    height: 50px;
    font-size: 0.8em;
  }
}