.page-blog {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-blog__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background-color: #B71C1C;
}

.page-blog__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 24px;
}

.page-blog__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #FFF5E1; /* Text Main */
}

.page-blog__main-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-blog__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-blog__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F2B544; /* Border */
}

.page-blog__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 216, 106, 0.6);
}

.page-blog__btn-secondary {
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
}

.page-blog__btn-secondary:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 15px rgba(242, 181, 68, 0.6);
}

.page-blog__hero-image {
  flex: 1 1 45%;
  text-align: center;
  min-width: 300px;
}

.page-blog__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog__intro-section {
  background-color: #D32F2F; /* Card BG */
  padding: 60px 0;
}

.page-blog__intro-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-blog__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1; /* Text Main */
}

.page-blog__intro-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-blog__icon-box {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #7A0E0E; /* Deep Red */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-blog__icon-box:hover {
  transform: translateY(-5px);
}

.page-blog__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2B544; /* Border */
  box-shadow: 0 0 10px rgba(255, 204, 102, 0.5); /* Glow */
}

.page-blog__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure circular shape */
  display: block;
}

.page-blog__icon-box-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold-like for emphasis */
}

.page-blog__icon-box-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
}

.page-blog__latest-posts-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

.page-blog__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  color: #FFF5E1; /* Text Main */
}

.page-blog__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  line-height: 1.6;
  color: #FFF5E1;
}

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

.page-blog__blog-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #7A0E0E; /* Deep Red for card border */
}

.page-blog__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-blog__card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.page-blog__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog__card-content {
  padding: 20px;
}

.page-blog__card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #FFD86A; /* Gold-like for emphasis */
}

.page-blog__card-excerpt {
  font-size: 0.95em;
  line-height: 1.5;
  color: #FFF5E1;
  margin-bottom: 15px;
}

.page-blog__card-date {
  font-size: 0.85em;
  color: #F2B544; /* Border */
  display: block;
}

.page-blog__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-blog__faq-section {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG */
}

.page-blog__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #7A0E0E;
}

.page-blog__faq-item {
  margin-bottom: 15px;
  background-color: #B71C1C; /* Background */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #7A0E0E;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFD86A; /* Gold */
  cursor: pointer;
  list-style: none;
  position: relative;
}

.page-blog__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog__faq-question::marker {
  display: none;
}

.page-blog__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFF5E1;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
  transform: rotate(45deg);
}

.page-blog__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog__faq-item[open] .page-blog__faq-answer {
  max-height: 2000px; /* Large enough to show content */
  padding-top: 10px;
  transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.page-blog__cta-bottom-section {
  background-color: #C91F17; /* Main color */
  padding: 80px 0;
  text-align: center;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__cta-bottom-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-blog__cta-bottom-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFF5E1;
  line-height: 1.2;
}

.page-blog__cta-bottom-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #FFF5E1;
}

.page-blog__btn-large {
  padding: 16px 35px;
  font-size: 1.2em;
  border-width: 3px;
}

/* General image responsiveness */
.page-blog img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-blog {
    font-size: 15px;
  }

  .page-blog__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px;
  }

  .page-blog__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .page-blog__hero-content,
  .page-blog__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-blog__main-title {
    font-size: 2.2em;
    text-align: center;
  }

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

  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .page-blog__btn-primary,
  .page-blog__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog__intro-section {
    padding: 40px 0;
  }

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

  .page-blog__intro-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog__icon-box {
    min-width: unset;
    flex: 1 1 100%;
    padding: 25px;
  }

  .page-blog__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .page-blog__icon-box-title {
    font-size: 1.3em;
  }

  .page-blog__icon-box-text {
    font-size: 0.95em;
  }

  .page-blog__latest-posts-section {
    padding: 40px 0;
  }

  .page-blog__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-blog__posts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog__blog-card {
    margin: 0 auto;
    max-width: 400px; /* constrain card width on small screens */
  }

  .page-blog__card-image {
    height: 180px;
  }

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

  .page-blog__card-excerpt {
    font-size: 0.9em;
  }

  .page-blog__view-all-button-container {
    margin-top: 40px;
  }

  .page-blog__faq-section {
    padding: 40px 0;
  }

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

  .page-blog__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  .page-blog__cta-bottom-section {
    padding: 50px 0;
  }

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

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

  .page-blog__btn-large {
    padding: 14px 28px;
    font-size: 1.1em;
  }

  /* General image and container responsiveness for mobile */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog__content-area,
  .page-blog__intro-container,
  .page-blog__cta-bottom-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}