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

.page-news a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news a:hover {
  color: #FFBF00;
  text-decoration: underline;
}

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

/* Hero Banner */
.page-news .hero-banner {
  background: linear-gradient(135deg, #1A202C 0%, #3A4750 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid #FFD700;
}

.page-news .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-news .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-news .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-news .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news .cta-button:hover {
  background-color: #FFBF00;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Section Titles */
.page-news .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
}

.page-news .sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #3A4750;
  padding-bottom: 10px;
}

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

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

.page-news .article-card {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-news .article-card:hover {
  transform: translateY(-5px);
}

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

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

.page-news .article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  min-height: 70px;
}

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

.page-news .article-title a:hover {
  color: #FFBF00;
}

.page-news .article-excerpt {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
  min-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.page-news .read-more {
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

/* Guides & Tips */
.page-news .guides-tips {
  padding: 60px 0;
  background-color: #1A202C;
}

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

.page-news .guide-card {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-news .guide-card:hover {
  transform: translateY(-5px);
}

.page-news .guide-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #FFD700;
}

.page-news .guide-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  min-height: 60px;
}

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

.page-news .guide-title a:hover {
  color: #FFBF00;
}

.page-news .guide-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
  min-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.page-news .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news .btn-small:hover {
  background-color: #FFBF00;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Market Analysis */
.page-news .market-analysis {
  padding: 60px 0;
  background-color: #2D3748;
}

.page-news .analysis-content {
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-news .analysis-content p {
  margin-bottom: 15px;
}

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

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

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

.faq-question:hover {
  background: #3A4750;
}

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

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

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Enough to contain content */
  padding: 20px 25px;
}

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

/* Contact Section */
.page-news .contact-section {
  padding: 60px 0;
  background-color: #2D3748;
  text-align: center;
}

.page-news .contact-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-news .contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: inline-block; /* For centering */
  text-align: left;
}

.page-news .contact-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-news .contact-list li i {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em; /* Placeholder for actual icons */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news .hero-title {
    font-size: 2.5em;
  }
  .page-news .section-title {
    font-size: 2em;
  }
  .page-news .article-grid, .page-news .guide-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news .hero-banner {
    padding: 60px 15px;
  }
  .page-news .hero-title {
    font-size: 2em;
  }
  .page-news .hero-description {
    font-size: 1em;
  }
  .page-news .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news .sub-section-title {
    font-size: 1.5em;
  }
  .page-news .article-content, .page-news .guide-card {
    padding: 20px;
  }
  .page-news .article-title, .page-news .guide-title {
    font-size: 1.3em;
    min-height: auto;
  }
  .page-news .article-excerpt, .page-news .guide-description {
    min-height: auto;
    -webkit-line-clamp: unset;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 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 .section-title {
    font-size: 1.6em;
  }
  .page-news .article-grid, .page-news .guide-cards {
    grid-template-columns: 1fr;
  }
  .page-news .article-image {
    height: 180px;
  }
  .page-news .guide-icon {
    width: 80px;
    height: 80px;
  }
}