.page-blog {
  /* Default padding-top for header offset on desktop */
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF; /* Light background as per color scheme and body background info */
  color: #333333; /* Dark text for light background, ensuring WCAG AA contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero to contrast with light body */
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a decent height */
}

.page-blog__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the background image for text readability */
}

.page-blog__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-blog__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.page-blog__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; 
  border: 2px solid #FCBC45;
}

.page-blog__button--primary:hover {
  background-color: #e0a73d;
  border-color: #e0a73d;
}

.page-blog__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register color for secondary action on dark background */
  border: 2px solid #FFFFFF;
}

.page-blog__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-blog__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-blog__button--xl {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-blog__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-blog__section:last-of-type {
  border-bottom: none;
}

.page-blog__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog__highlight {
  font-weight: bold;
  color: #000000;
}

.page-blog__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-blog__list-item {
  margin-bottom: 10px;
}

.page-blog__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-blog__image-with-caption {
  margin: 40px auto;
  text-align: center;
  max-width: 800px; /* Limit image width to prevent overflow on larger screens */
}

.page-blog__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure no extra space below image */
}

.page-blog__image-caption {
  font-style: italic;
  font-size: 0.95em;
  color: #666666;
  margin-top: 15px;
}

.page-blog__cta-block {
  background-color: #F8F8F8;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog__cta-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-blog__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

.page-blog__feature-list, .page-blog__benefits-list, .page-blog__security-list, .page-blog__tips-list, .page-blog__bonuses-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog__feature-item, .page-blog__benefits-item, .page-blog__security-item, .page-blog__tips-item, .page-blog__bonuses-item {
  background-color: #FDFDFD;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-blog__feature-item:hover, .page-blog__benefits-item:hover, .page-blog__security-item:hover, .page-blog__tips-item:hover, .page-blog__bonuses-item:hover {
  transform: translateY(-5px);
}

.page-blog__feature-title, .page-blog__benefits-title, .page-blog__security-title, .page-blog__tips-title, .page-blog__bonuses-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-blog__feature-description, .page-blog__benefits-description, .page-blog__security-description, .page-blog__tips-description, .page-blog__bonuses-description {
  font-size: 1em;
  color: #555555;
}

.page-blog__comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog__comparison-card {
  background-color: #FDFDFD;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog__comparison-card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog__faq-item {
  background-color: #FDFDFD;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-blog__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-blog__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-blog__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-blog__link:hover {
  text-decoration: underline;
}

.page-blog__final-cta-block {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-blog__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .page-blog__hero-title {
    font-size: 2.2em;
  }

  .page-blog__hero-description {
    font-size: 1em;
  }

  .page-blog__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog__button {
    width: 100%;
    max-width: 300px;
  }

  .page-blog__section-title {
    font-size: 1.8em;
  }

  .page-blog__subsection-title {
    font-size: 1.5em;
  }

  .page-blog__paragraph, .page-blog__list, .page-blog__list-item, .page-blog__feature-description, .page-blog__benefits-description, .page-blog__security-description, .page-blog__tips-description, .page-blog__bonuses-description, .page-blog__faq-answer {
    font-size: 0.95em;
  }

  .page-blog__feature-list, .page-blog__benefits-list, .page-blog__security-list, .page-blog__tips-list, .page-blog__bonuses-list, .page-blog__comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog__cta-block {
    padding: 30px 20px;
  }

  .page-blog__cta-title {
    font-size: 1.6em;
  }

  .page-blog__final-cta-block {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog__content-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }
}

/* Ensure all content area images are not smaller than 200px */
.page-blog img {
  min-width: 200px;
  min-height: 200px;
}

/* The following rule is a safeguard based on the prompt, but should ideally not be needed if images are correctly sized */
@media (max-width: 768px) {
  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}