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

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

/* Hero Section */
.page-blog__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset handled by body */
  overflow: hidden;
}

.page-blog__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 40px;
  margin-top: -80px; /* Overlap slightly for visual effect */
  background: #2A1212; /* Card BG */
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-blog__cta-button--secondary {
  background: #7E0D0D; /* Deep Red */
}

.page-blog__cta-button--secondary:hover {
  background: #C61F1F; /* Primary color */
}

/* Section Titles */
.page-blog__section-title {
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-blog__text-block {
  color: #FFF1E8;
  text-align: justify;
  margin-bottom: 20px;
}

.page-blog__text-block a {
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
}

.page-blog__text-block a:hover {
  text-decoration: underline;
}

/* Intro Section */
.page-blog__intro-section {
  padding: 40px 0;
}

.page-blog__features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.page-blog__feature-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  padding: 25px;
  flex: 1 1 calc(33% - 40px);
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__feature-title {
  color: #F3C54D; /* Gold */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog__feature-item p {
  color: #FFF1E8;
}

/* Blog List Section */
.page-blog__blog-list-section {
  padding: 40px 0;
}

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

.page-blog__blog-card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-blog__blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-blog__card-title {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-blog__card-title a:hover {
  color: #FFB04A;
  text-decoration: underline;
}

.page-blog__card-meta {
  font-size: 0.9em;
  color: #E53030; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-blog__card-excerpt {
  color: #FFF1E8;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-blog__card-link {
  display: inline-block;
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog__card-link:hover {
  color: #F3C54D;
  text-decoration: underline;
}

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

/* CTA Section */
.page-blog__cta-section {
  padding: 60px 0;
  background: #C61F1F; /* Primary color */
  text-align: center;
}

.page-blog__cta-content {
  max-width: 800px;
}

.page-blog__cta-content .page-blog__section-title {
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
}

.page-blog__cta-content .page-blog__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog__cta-content .page-blog__text-block a {
  color: #FFB04A;
}

/* FAQ Section */
.page-blog__faq-section {
  padding: 60px 0;
}

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

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

details.page-blog__faq-item summary.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-blog__faq-item summary.page-blog__faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.page-blog__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-blog__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog__faq-item .page-blog__faq-answer {
  padding: 0 25px 25px;
  background: rgba(0, 0, 0, 0.2); /* Slightly lighter dark background */
  border-radius: 0 0 8px 8px;
  color: #FFF1E8;
}

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

.page-blog__faq-answer a {
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
}

.page-blog__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    padding: 30px;
    margin-top: -60px;
  }

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

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

  .page-blog__feature-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog__hero-content {
    padding: 20px;
    margin-top: -40px;
    border-radius: 0 0 4px 4px;
  }

  .page-blog__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog__hero-description {
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .page-blog__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog__cta-content {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-blog__container,
  .page-blog__intro-section,
  .page-blog__blog-list-section,
  .page-blog__cta-section,
  .page-blog__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog__feature-item {
    flex: 1 1 100%;
    padding: 20px;
  }

  .page-blog__blog-grid {
    gap: 20px;
  }

  .page-blog__blog-card img {
    height: 200px;
  }

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

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

  .page-blog__card-meta {
    font-size: 0.85em;
  }

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

  details.page-blog__faq-item summary.page-blog__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-blog__faq-qtext {
    font-size: 1em;
    width: calc(100% - 40px);
  }

  .page-blog__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

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

  .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;
  }
}