.page-blog {
  color: #ffffff; /* Body background is #121212 (dark), so text must be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #121212; /* Dark background for the section */
  color: #ffffff;
  overflow: hidden;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-blog__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for main title */
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
  /* No fixed font-size, relying on responsive scaling */
}

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

.page-blog__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: 2px solid #26A9E0;
  box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-blog__btn-primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-blog__btn-secondary {
  background: transparent;
  color: #26A9E0;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-blog__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #121212; /* Dark background for content area */
  color: #ffffff; /* Light text for contrast */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-blog__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: left;
}

.page-blog__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-blog__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.page-blog__image-with-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog__content-image {
  flex: 1 1 400px; /* Min width for image */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__text-content {
  flex: 2 1 400px; /* Min width for text */
}

.page-blog__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent light background for card */
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(38, 169, 224, 0.3);
}

.page-blog__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-blog__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog__card-description {
  font-size: 0.95em;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-blog__card-date {
  font-size: 0.85em;
  color: #aaaaaa;
  text-align: right;
  margin-top: auto;
}

.page-blog__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog__faq-list {
  margin-top: 30px;
}

.page-blog__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter dark background for FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-blog__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-blog__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.1);
}

.page-blog__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-blog__final-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(38, 169, 224, 0.15); /* Light blue tint for final CTA */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(38, 169, 224, 0.3);
}

.page-blog__final-cta .page-blog__text-block {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-blog__btn-large {
  padding: 16px 32px;
  font-size: 1.1em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog__main-title {
    font-size: 2em;
  }

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

  .page-blog__btn-primary,
  .page-blog__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
  }
  
  .page-blog__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog__content-area {
    padding: 20px 15px;
  }

  .page-blog__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog__text-block,
  .page-blog__list-item {
    font-size: 0.95em;
  }

  .page-blog__image-with-text {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-blog__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog__card-title {
    font-size: 1.2em;
  }

  .page-blog__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog__final-cta {
    padding: 20px;
  }

  .page-blog__final-cta .page-blog__text-block {
    font-size: 1em;
  }

  /* General image responsiveness */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos/buttons */
  .page-blog__hero-image-wrapper,
  .page-blog__image-with-text,
  .page-blog__promo-cards,
  .page-blog__card,
  .page-blog__cta-buttons,
  .page-blog__final-cta,
  .page-blog__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog__hero-image-wrapper { padding-left: 0; padding-right: 0; }
  .page-blog__hero-content { padding-left: 15px; padding-right: 15px; }
}

@media (max-width: 480px) {
  .page-blog__main-title {
    font-size: 1.8em;
  }

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

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