.page-blog {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-blog__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5; /* Light background for hero */
  position: relative;
  overflow: hidden;
}

.page-blog__hero-container {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-blog__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-blog__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  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;
}

.page-blog__cta-button:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-blog__latest-articles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

.page-blog__article-card:hover {
  transform: translateY(-5px);
}

.page-blog__article-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog__article-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-blog__article-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__article-title a:hover {
  color: #FCBC45;
}

.page-blog__article-excerpt {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog__read-more-button {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-blog__read-more-button:hover {
  color: #e6a73c;
}

.page-blog__category-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.page-blog__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.page-blog__category-card {
  display: block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 25px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__category-card:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-blog__in-depth-article {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.page-blog__intro-paragraph {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-blog__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-blog__in-depth-article p {
  margin-bottom: 20px;
  color: #333333;
}

.page-blog__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f0f0f0;
  border-radius: 8px;
}

.page-blog__cta-bottom p {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 25px;
}

.page-blog__why-choose-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-blog__why-choose-section .page-blog__section-title {
  color: #FFFFFF;
}

.page-blog__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog__benefits-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-blog__benefit-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 50%; /* Make icons circular if desired */
  background-color: #FCBC45; /* Example background for icons */
  padding: 10px;
}

.page-blog__cta-button--large {
  font-size: 1.3em;
  padding: 18px 35px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 2.4em;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__benefits-list li {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 40px 15px;
  }
  .page-blog__hero-title {
    font-size: 2em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__article-image {
    height: 200px;
  }
  .page-blog__category-card {
    font-size: 1em;
    padding: 20px 15px;
  }
  .page-blog__in-depth-article {
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-blog__sub-title {
    font-size: 1.5em;
  }
  .page-blog__benefits-list li {
    flex: 1 1 100%;
    min-width: unset;
    text-align: center;
    flex-direction: column;
  }
  .page-blog__benefit-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-blog__hero-image-wrapper img, .page-blog__latest-articles-section img, .page-blog__in-depth-article img, .page-blog__why-choose-section img, .page-blog__benefits-list li img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 1.7em;
  }
  .page-blog__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog__section-title {
    font-size: 1.6em;
  }
  .page-blog__benefits-list li {
    font-size: 1em;
  }
  .page-blog__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}