.page-blog {
  color: #333333; /* Deep dark text for light body background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Blend of brand colors */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 500px;
}

.page-blog__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.page-blog__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 90%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
}

.page-blog__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

.page-blog__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

.page-blog__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid #FFD700;
}

.page-blog__sub-title {
  font-size: 2em;
  color: #8B0000;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog__sub-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #333333;
}

.page-blog__numbered-list, .page-blog__bullet-list {
  margin: 20px 0;
  padding-left: 30px;
  list-style-type: decimal;
}

.page-blog__bullet-list {
  list-style-type: disc;
}

.page-blog__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #444444;
}

.page-blog__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-blog__cta-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-3px);
  border-color: #8B0000;
}

.page-blog__cta-button--download {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-blog__cta-button--download:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-blog__cta-button--register {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-blog__cta-button--register:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

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

.page-blog__image-in-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-blog__call-to-action-banner {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog__cta-banner-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6);
}

.page-blog__cta-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  background: rgba(139, 0, 0, 0.6);
}

.page-blog__cta-banner-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog__cta-banner-description {
  font-size: 1.4em;
  margin-bottom: 25px;
  max-width: 800px;
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 3em;
  }
  .page-blog__hero-description {
    font-size: 1.2em;
  }
  .page-blog__section-title {
    font-size: 2.2em;
  }
  .page-blog__sub-title {
    font-size: 1.8em;
  }
  .page-blog__sub-heading {
    font-size: 1.4em;
  }
  .page-blog__cta-banner-title {
    font-size: 2.5em;
  }
  .page-blog__cta-banner-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    min-height: 400px;
  }
  .page-blog__hero-title {
    font-size: 2.5em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog__content-area {
    padding: 20px 15px;
    margin-top: -60px;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__sub-title {
    font-size: 1.6em;
  }
  .page-blog__sub-heading {
    font-size: 1.3em;
  }
  .page-blog__paragraph, .page-blog__list-item {
    font-size: 1em;
  }
  .page-blog__image-in-content {
    max-width: 100%;
    height: auto;
  }
  .page-blog__cta-banner-title {
    font-size: 2em;
  }
  .page-blog__cta-banner-description {
    font-size: 1em;
  }
  .page-blog__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area images must not overflow */
  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-section {
    min-height: 350px;
  }
  .page-blog__hero-title {
    font-size: 2em;
  }
  .page-blog__hero-description {
    font-size: 0.9em;
  }
  .page-blog__hero-content {
    padding: 20px;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__sub-title {
    font-size: 1.4em;
  }
  .page-blog__sub-heading {
    font-size: 1.2em;
  }
  .page-blog__cta-banner-title {
    font-size: 1.8em;
  }
  .page-blog__cta-banner-description {
    font-size: 0.9em;
  }
}