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

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

.page-news .hero-banner {
  background: linear-gradient(135deg, #1A2B4C, #2C4A7B);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-news .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-news .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-news .hero-image-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-news .hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news .cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-news .cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news section {
  padding: 60px 0;
}

.page-news section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-news .section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

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

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

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

.page-news .article-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news .article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news .card-content {
  padding: 25px;
}

.page-news .card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

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

.page-news .card-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

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

.page-news .read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news .read-more:hover {
  color: #1A2B4C;
}

.page-news .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.page-news .category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-decoration: none;
  color: #1A2B4C;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news .category-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-news .category-name {
  text-align: center;
}

.page-news .article-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-news .list-item {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news .list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-news .list-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-news .list-content {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .list-title {
  font-size: 1.3em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.page-news .list-title a {
  color: #1A2B4C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news .list-title a:hover {
  color: #FFD700;
}

.page-news .list-meta {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 10px;
}

.page-news .list-excerpt {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
}

.page-news .cta-section {
  background-color: #1A2B4C;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-news .cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-news .cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

.page-news .faq-items-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #1A2B4C;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-news .hero-title {
    font-size: 2.8em;
  }
  .page-news .hero-description {
    font-size: 1.1em;
  }
  .page-news .list-item {
    flex-direction: column;
  }
  .page-news .list-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news .hero-banner {
    padding: 60px 0;
  }
  .page-news .hero-title {
    font-size: 2.2em;
  }
  .page-news .hero-description {
    font-size: 1em;
  }
  .page-news .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-news .section-title {
    font-size: 2em;
  }
  .page-news .section-subtitle {
    font-size: 0.95em;
  }
  .page-news .articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news .article-image {
    height: 180px;
  }
  .page-news .card-title {
    font-size: 1.3em;
  }
  .page-news .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .page-news .category-image {
    width: 90px;
    height: 90px;
  }
  .page-news .list-content {
    padding: 15px;
  }
  .page-news .list-title {
    font-size: 1.1em;
  }
  .page-news .cta-title {
    font-size: 2em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-news .hero-title {
    font-size: 1.8em;
  }
  .page-news .hero-description {
    font-size: 0.9em;
  }
  .page-news .hero-image-container {
    margin-top: 20px;
  }
  .page-news .section-title {
    font-size: 1.8em;
  }
  .page-news .cta-title {
    font-size: 1.8em;
  }
  .page-news .cta-description {
    font-size: 1em;
  }
  .page-news .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}