.page-resources-bay789-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A202C; /* Primary dark background */
}

.page-resources-bay789-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-bay789-review__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-bay789-review__back-link {
  display: inline-block;
  color: #FFD700; /* Secondary gold for links */
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.page-resources-bay789-review__back-link:hover {
  color: #fff;
}

.page-resources-bay789-review__title {
  font-size: 3.2em;
  color: #FFD700; /* Secondary gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-bay789-review__meta {
  font-size: 0.9em;
  color: #9E9E9E;
}

.page-resources-bay789-review__article-content {
  padding: 60px 0;
}

.page-resources-bay789-review__article-container {
  max-width: 800px;
}

.page-resources-bay789-review__heading {
  font-size: 2.2em;
  color: #FFD700; /* Secondary gold for headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-resources-bay789-review__sub-heading {
  font-size: 1.6em;
  color: #FFD700; /* Secondary gold for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-bay789-review__article-content p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-bay789-review__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-bay789-review__list {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-resources-bay789-review__list li {
  margin-bottom: 0.5em;
}

.page-resources-bay789-review__list--ordered {
  list-style: decimal inside;
  margin-bottom: 1em;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-resources-bay789-review__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-bay789-review__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-bay789-review__cta-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-bay789-review__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-bay789-review__button--primary {
  background-color: #FFD700; /* Secondary gold for primary CTA */
  color: #1A202C; /* Dark text on gold */
}

.page-resources-bay789-review__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-bay789-review__button--secondary {
  background-color: #3a475a; /* A darker shade of primary for secondary CTA */
  color: #FFD700; /* Gold text on dark */
  border: 1px solid #FFD700;
}

.page-resources-bay789-review__button--secondary:hover {
  background-color: #5f636b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-resources-bay789-review__pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-bay789-review__pros, .page-resources-bay789-review__cons {
  flex: 1;
  min-width: 300px;
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-bay789-review__pros .page-resources-bay789-review__sub-heading {
  color: #4CAF50; /* Green for pros */
  border-bottom: 1px solid rgba(76, 175, 80, 0.5);
  padding-bottom: 10px;
  margin-top: 0;
}

.page-resources-bay789-review__cons .page-resources-bay789-review__sub-heading {
  color: #F44336; /* Red for cons */
  border-bottom: 1px solid rgba(244, 67, 54, 0.5);
  padding-bottom: 10px;
  margin-top: 0;
}

.page-resources-bay789-review__pros ul, .page-resources-bay789-review__cons ul {
  list-style: none;
  padding-left: 0;
}

.page-resources-bay789-review__pros ul li::before {
  content: '✅';
  margin-right: 10px;
}

.page-resources-bay789-review__cons ul li::before {
  content: '❌';
  margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-bay789-review__title {
    font-size: 2.5em;
  }

  .page-resources-bay789-review__heading {
    font-size: 1.8em;
  }

  .page-resources-bay789-review__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-bay789-review__article-content p {
    font-size: 1em;
  }

  .page-resources-bay789-review__pros-cons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-resources-bay789-review__title {
    font-size: 2em;
  }

  .page-resources-bay789-review__hero {
    padding: 60px 0 30px;
  }

  .page-resources-bay789-review__article-content {
    padding: 30px 0;
  }

  .page-resources-bay789-review__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}