.page-blog {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background color */
  line-height: 1.6;
  font-size: 16px;
}

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

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  background-color: #140C0C; /* Ensure consistent background */
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-blog__hero-content {
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
}

.page-blog__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog__hero-description {
  font-size: 1.1rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #FFF1E8; /* Text Main */
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.page-blog__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog__section {
  padding: 60px 0;
  background-color: #140C0C; /* Background color */
}

.page-blog__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem); /* Responsive font size */
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog__section-description {
  font-size: 1.1rem;
  color: #FFF1E8; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 800px; /* Limit width for content images */
}

.page-blog__introduction-section p {
  font-size: 1rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-blog__card {
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #6A1E1E; /* Border color */
}

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

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

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

.page-blog__card-title {
  font-size: 1.4rem;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.page-blog__card-title a {
  color: #F3C54D; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__card-title a:hover {
  color: #FFB04A; /* Lighter gold for hover */
}

.page-blog__card-text {
  font-size: 0.95rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog__card-link {
  display: inline-block;
  color: #FFB04A; /* Button gradient start color */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #FFB04A;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.page-blog__card-link:hover {
  color: #F3C54D; /* Gold */
  border-color: #F3C54D;
}

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

.page-blog__strategy-section ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog__strategy-section li {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border color */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: #FFF1E8; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-blog__strategy-section li:hover {
  background-color: #3C1A1A; /* Slightly darker hover */
}

.page-blog__strategy-section li strong {
  color: #FFB04A; /* Gold */
}

.page-blog__cta-section {
  background-color: #C61F1F; /* Main color as dark bg */
  padding: 80px 0;
  text-align: center;
}

.page-blog__cta-section .page-blog__section-title {
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
}

.page-blog__cta-section .page-blog__section-description {
  color: #FFF1E8; /* Text Main */
  margin-bottom: 40px;
}

.page-blog__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
}

.page-blog__btn-secondary {
  background: transparent;
  color: #FFB04A;
  border: 2px solid #FFB04A;
}

.page-blog__btn-secondary:hover {
  background: #FFB04A;
  color: #140C0C;
  transform: translateY(-2px);
}

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

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

.page-blog__faq-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  cursor: pointer;
  background-color: #2A1212;
  transition: background-color 0.3s ease;
}

.page-blog__faq-question:hover {
  background-color: #3C1A1A;
}

.page-blog__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFB04A;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #FFF1E8; /* Text Main */
  text-align: justify;
  line-height: 1.7;
}

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

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

.page-blog__conclusion-section p {
  font-size: 1rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  .page-blog {
    font-size: 15px;
  }
  .page-blog__container {
    padding: 0 15px;
  }
  .page-blog__hero-image {
    max-height: 350px;
  }
  .page-blog__hero-content {
    padding: 15px;
  }
  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog__cta-button,
  .page-blog a[class*="button"],
  .page-blog a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px; /* Add padding for text inside button */
    padding-right: 15px; /* Add padding for text inside button */
  }
  .page-blog__cta-buttons,
  .page-blog__button-group,
  .page-blog__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog__section {
    padding: 40px 0;
  }
  .page-blog__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog__card-image {
    height: 180px;
  }
  .page-blog__card-content {
    padding: 20px;
  }
  .page-blog__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-blog__image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Ensure content images are not smaller than 200px if they are part of content */
  .page-blog__introduction-section img,
  .page-blog__strategy-section img {
    min-width: 200px;
    min-height: 200px;
  }
}

/* Global image responsiveness, ensuring no small icons */
.page-blog img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Video responsiveness (if any, though not explicitly in content for blog page) */
.page-blog video,
.page-blog__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-blog__video-section,
.page-blog__video-container,
.page-blog__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog video,
  .page-blog__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog__video-section,
  .page-blog__video-container,
  .page-blog__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog__video-section {
    padding-top: 10px !important;
  }
  .page-blog__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Contrast Fixes - although colors are chosen for contrast, these are for safety */
.page-blog__dark-bg {
  background-color: #C61F1F;
  color: #ffffff;
}

.page-blog__dark-bg .page-blog__section-title,
.page-blog__dark-bg .page-blog__section-description {
  color: #ffffff;
}

.page-blog__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Ensure no filter on images */
.page-blog img {
  filter: none !important;
}