.page-blog {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main from custom palette */
  background-color: #B71C1C; /* Body background from custom palette */
}

.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;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

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

.page-blog__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #FFF5E1;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

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

.page-blog__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient from custom palette */
  color: #7A0E0E; /* Deep Red for text on light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #F2B544; /* Border from custom palette */
}

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

.page-blog__section-title {
  font-size: 2.5rem;
  color: #FFF5E1;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog__section-title--dark {
  color: #333333;
}

.page-blog__text-main {
  color: #FFF5E1;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.page-blog__text-main--dark {
  color: #333333;
}

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

.page-blog__light-bg {
  background-color: #ffffff;
  padding: 60px 0;
}

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

.page-blog__article-card {
  background-color: #D32F2F; /* Card BG from custom palette */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #F2B544; /* Border from custom palette */
}

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

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

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

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

.page-blog__card-title {
  font-size: 1.5rem;
  color: #FFF5E1;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog__card-excerpt {
  font-size: 1rem;
  color: #FFF5E1;
  margin-bottom: 20px;
}

.page-blog__article-date {
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.7);
  display: block;
  margin-bottom: 10px;
}

.page-blog__read-more {
  color: #F4D34D; /* Gold from custom palette */
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-blog__read-more:hover {
  color: #FFCC66; /* Glow from custom palette */
}

.page-blog__view-all {
  text-align: center;
}

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

.page-blog__category-item {
  background-color: #D32F2F;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.page-blog__category-item:hover {
  background-color: #C91F17;
}

.page-blog__category-link {
  display: block;
  padding: 10px 25px;
  color: #FFF5E1;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-blog__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog__guide-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-blog__guide-list li::before {
  content: '👉';
  position: absolute;
  left: 0;
  color: #F4D34D;
  font-size: 1.2rem;
}

.page-blog__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog__benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.page-blog__benefits-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #F4D34D;
  font-size: 1.2rem;
}

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

.page-blog__faq-item {
  background-color: #D32F2F; /* Card BG from custom palette */
  border: 1px solid #F2B544; /* Border from custom palette */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1;
}

.page-blog__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #FFF5E1;
  transition: background-color 0.3s ease;
}

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

.page-blog__faq-item summary:hover {
  background-color: #C91F17;
}

.page-blog__faq-qtext {
  flex-grow: 1;
}

.page-blog__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #F4D34D;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
  content: '−';
}

.page-blog__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.1rem;
  color: #FFF5E1;
}

.page-blog__faq-answer p {
  margin: 0;
  color: #FFF5E1;
}

.page-blog__final-cta {
  padding: 80px 0;
  text-align: center;
}

.page-blog__final-cta-content {
  max-width: 900px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog__section-title {
    font-size: 2rem;
  }
  .page-blog__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog__section,
  .page-blog__card,
  .page-blog__container,
  .page-blog__hero-section,
  .page-blog__latest-articles,
  .page-blog__categories,
  .page-blog__popular-posts,
  .page-blog__guides-strategies,
  .page-blog__why-choose-us,
  .page-blog__faq-section,
  .page-blog__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog__hero-content {
    padding: 0 15px;
  }
  .page-blog__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog__hero-description {
    font-size: 1rem;
  }
  .page-blog__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-blog__article-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__article-image {
    height: 180px;
  }
  .page-blog__card-title {
    font-size: 1.3rem;
  }
  .page-blog__card-excerpt {
    font-size: 0.95rem;
  }
  .page-blog__category-list {
    flex-direction: column;
    align-items: center;
  }
  .page-blog__category-item {
    width: 100%;
    text-align: center;
  }
  .page-blog__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog__faq-answer {
    font-size: 1rem;
    padding: 0 20px 15px;
  }
  .page-blog__text-main, .page-blog p, .page-blog li {
    font-size: 16px;
    line-height: 1.6;
  }
}