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

.page-resources-win68-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-win68-latest-news__hero {
  position: relative;
  width: 100%;
  height: 450px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

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

.page-resources-win68-latest-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(139, 0, 0, 0.7)); /* Dark overlay with primary color tint */
  z-index: 2;
}

.page-resources-win68-latest-news__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-resources-win68-latest-news__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-resources-win68-latest-news__hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-resources-win68-latest-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-win68-latest-news__cta-button:hover {
  background-color: #8B0000; /* Dark red on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-win68-latest-news__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-resources-win68-latest-news__section:nth-of-type(odd) {
  background-color: #fcfcfc;
}

.page-resources-win68-latest-news__section h2 {
  font-size: 2.2em;
  color: #8B0000; /* Dark red heading */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-win68-latest-news__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-resources-win68-latest-news__intro p {
  text-align: center;
  font-size: 1.05em;
  margin-bottom: 30px;
}

.page-resources-win68-latest-news__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-win68-latest-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-win68-latest-news__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-win68-latest-news__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-win68-latest-news__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-win68-latest-news__card h3 {
  font-size: 1.4em;
  color: #8B0000; /* Dark red heading */
  padding: 15px 20px 10px;
  margin: 0;
}

.page-resources-win68-latest-news__card-link {
  text-decoration: none;
  color: #8B0000;
}

.page-resources-win68-latest-news__card-link:hover {
  color: #FFD700;
}

.page-resources-win68-latest-news__card p {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-win68-latest-news__article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-resources-win68-latest-news__article-item {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-win68-latest-news__article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-win68-latest-news__article-image {
  width: 350px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-resources-win68-latest-news__article-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-win68-latest-news__article-content h3 {
  font-size: 1.6em;
  color: #8B0000; /* Dark red heading */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-win68-latest-news__article-link {
  text-decoration: none;
  color: #8B0000;
}

.page-resources-win68-latest-news__article-link:hover {
  color: #FFD700;
}

.page-resources-win68-latest-news__article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-resources-win68-latest-news__article-content p {
  font-size: 1.0em;
  color: #444;
  margin-bottom: 20px;
}

.page-resources-win68-latest-news__read-more {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-win68-latest-news__read-more:hover {
  background-color: #8B0000; /* Dark red on hover */
  color: #FFD700; /* Gold text on hover */
}

.page-resources-win68-latest-news__why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.page-resources-win68-latest-news__why-choose li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444;
}

.page-resources-win68-latest-news__why-choose li strong {
  color: #8B0000;
}

.page-resources-win68-latest-news__access-guide ol {
  list-style: decimal;
  padding-left: 25px;
  margin: 0 0 30px;
}

.page-resources-win68-latest-news__access-guide li {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 10px;
}

/* FAQ Styles */
.page-resources-win68-latest-news__faq .faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

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

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #8B0000; /* Dark red */
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000; /* Dark red when active */
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
}

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

/* Floating Buttons */
.page-resources-win68-latest-news__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-resources-win68-latest-news__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark red */
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-win68-latest-news__floating-btn:hover {
  background-color: #8B0000; /* Dark red on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-win68-latest-news__hero {
    height: 350px;
  }
  .page-resources-win68-latest-news__hero-content h1 {
    font-size: 2.5em;
  }
  .page-resources-win68-latest-news__article-item {
    flex-direction: column;
  }
  .page-resources-win68-latest-news__article-image {
    width: 100%;
    height: 250px;
  }
  .page-resources-win68-latest-news__article-content {
    padding: 20px;
  }
  .page-resources-win68-latest-news__article-content h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-win68-latest-news__hero {
    height: 300px;
  }
  .page-resources-win68-latest-news__hero-content h1 {
    font-size: 2em;
  }
  .page-resources-win68-latest-news__hero-content p {
    font-size: 1em;
  }
  .page-resources-win68-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-win68-latest-news__section {
    padding: 40px 0;
  }
  .page-resources-win68-latest-news__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-win68-latest-news__card-image {
    height: 180px;
  }
  .page-resources-win68-latest-news__card h3 {
    font-size: 1.2em;
  }
  .page-resources-win68-latest-news__article-list {
    gap: 30px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-resources-win68-latest-news__floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  .page-resources-win68-latest-news__floating-btn {
    width: 100px;
    height: 45px;
    font-size: 1em;
    border-radius: 22.5px;
  }
}

@media (max-width: 480px) {
  .page-resources-win68-latest-news__hero {
    height: 250px;
  }
  .page-resources-win68-latest-news__hero-content h1 {
    font-size: 1.6em;
  }
  .page-resources-win68-latest-news__hero-content p {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .page-resources-win68-latest-news__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-win68-latest-news__section h2 {
    font-size: 1.6em;
  }
  .page-resources-win68-latest-news__card-image {
    height: 150px;
  }
  .page-resources-win68-latest-news__article-image {
    height: 200px;
  }
  .page-resources-win68-latest-news__floating-buttons {
    flex-direction: row;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: space-around;
    bottom: 0;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .page-resources-win68-latest-news__floating-btn {
    width: 45%;
    height: 40px;
    font-size: 0.9em;
  }
}