.page-aw8-news {
  color: #ffffff;
  background-color: #121212;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-aw8-news__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-aw8-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Hero Section */
.page-aw8-news__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Fixed nav spacing */
  margin-top: 0;
}

.page-aw8-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-aw8-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-aw8-news__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-aw8-news__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-aw8-news__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Latest Articles Section */
.page-aw8-news__latest-articles-section {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-aw8-news__article-card {
  background-color: #2a303c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-aw8-news__article-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-aw8-news__article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-aw8-news__article-card:hover .page-aw8-news__article-image {
  transform: scale(1.05);
}

.page-aw8-news__article-content {
  padding: 20px;
}

.page-aw8-news__article-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-aw8-news__article-summary {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-aw8-news__read-more {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.page-aw8-news__read-more::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.page-aw8-news__article-card:hover .page-aw8-news__read-more::after {
  margin-left: 10px;
}

.page-aw8-news__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Industry Insights Section */
.page-aw8-news__industry-insights-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-aw8-news__insights-content p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-aw8-news__insights-content .page-aw8-news__btn-secondary {
  display: inline-block;
  margin-top: 20px;
}

/* AW8 Updates Section */
.page-aw8-news__aw8-updates-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-aw8-news__updates-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-aw8-news__update-item {
  background-color: #2a303c;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-aw8-news__update-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-aw8-news__update-meta {
  margin-bottom: 10px;
}

.page-aw8-news__update-date {
  font-size: 14px;
  color: #FFD700;
  font-weight: 600;
}

.page-aw8-news__update-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-aw8-news__update-summary {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 15px;
}

/* CTA Section */
.page-aw8-news__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFD700, #b89d00);
  text-align: center;
}

.page-aw8-news__cta-title {
  font-size: 40px;
  font-weight: bold;
  color: #1A202C;
  margin-bottom: 20px;
}

.page-aw8-news__cta-description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-aw8-news__btn-primary,
.page-aw8-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-aw8-news__btn-primary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #1A202C;
}

.page-aw8-news__btn-primary:hover {
  background-color: #0d0f13;
  color: #FFD700;
  border-color: #0d0f13;
}

.page-aw8-news__btn-secondary {
  background-color: transparent;
  color: #1A202C;
  border: 2px solid #1A202C;
}

.page-aw8-news__btn-secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* FAQ Section */
.page-aw8-news__faq-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-aw8-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-aw8-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-aw8-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-aw8-news__faq-item.active .page-aw8-news__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #2a303c;
  border-radius: 0 0 5px 5px;
  color: #cccccc;
}

.page-aw8-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A202C;
  border: 1px solid #3a404c;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-aw8-news__faq-question:hover {
  background: #2a303c;
  border-color: #4a505c;
}

.page-aw8-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-aw8-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-aw8-news__faq-item.active .page-aw8-news__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-aw8-news__hero-title {
    font-size: 40px;
  }

  .page-aw8-news__hero-description {
    font-size: 16px;
  }

  .page-aw8-news__section-title {
    font-size: 32px;
  }

  .page-aw8-news__article-title {
    font-size: 20px;
  }

  .page-aw8-news__update-title {
    font-size: 22px;
  }

  .page-aw8-news__cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-aw8-news__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-aw8-news__hero-section {
    height: 450px;
    padding-top: 10px !important;
  }

  .page-aw8-news__hero-title {
    font-size: 32px;
  }

  .page-aw8-news__hero-description {
    font-size: 14px;
  }

  .page-aw8-news__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-aw8-news__latest-articles-section,
  .page-aw8-news__industry-insights-section,
  .page-aw8-news__aw8-updates-section,
  .page-aw8-news__cta-section,
  .page-aw8-news__faq-section {
    padding: 50px 0;
  }

  .page-aw8-news__articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-aw8-news__article-image-wrapper {
    height: 180px;
  }

  .page-aw8-news__article-title {
    font-size: 18px;
  }

  .page-aw8-news__article-summary {
    font-size: 14px;
  }

  .page-aw8-news__update-title {
    font-size: 20px;
  }

  .page-aw8-news__update-summary {
    font-size: 15px;
  }

  .page-aw8-news__cta-title {
    font-size: 28px;
  }

  .page-aw8-news__cta-description {
    font-size: 16px;
  }

  .page-aw8-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-aw8-news__btn-primary,
  .page-aw8-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-aw8-news__faq-question {
    padding: 15px 20px;
  }

  .page-aw8-news__faq-question h3 {
    font-size: 16px;
  }

  .page-aw8-news__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }

  .page-aw8-news__faq-item.active .page-aw8-news__faq-answer {
    padding: 15px 20px !important;
  }

  /* All images responsive */
  .page-aw8-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}