.page-blog {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog__section {
  padding: 60px 0;
}

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

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

.page-blog__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-blog__hero-content-wrapper {
  position: relative;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Overlap image slightly for visual effect, but content is below */
  background: linear-gradient(180deg, rgba(17, 39, 27, 0.8) 0%, #11271B 100%); /* Card B G with transparency */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  box-sizing: border-box;
}

.page-blog__hero-title {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog__hero-button,
.page-blog__view-all-button,
.page-blog__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog__hero-button:hover,
.page-blog__view-all-button:hover,
.page-blog__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Latest Posts Section */
.page-blog__latest-posts {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-blog__post-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
}

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

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

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

.page-blog__post-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-blog__post-summary {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog__read-more {
  color: #2AD16F; /* Main Color */
  font-weight: bold;
  text-decoration: none;
}

.page-blog__read-more:hover {
  text-decoration: underline;
}

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

/* Categories Section */
.page-blog__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.page-blog__category-card {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 25px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog__category-card:hover {
  background-color: #0A4B2C; /* Deep Green */
  transform: translateY(-3px);
  color: #57E38D; /* Glow */
}

/* Why Choose Section */
.page-blog__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.8;
}

.page-blog__text-block h3 {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-blog__text-block p {
  margin-bottom: 1em;
}

/* FAQ Section */
.page-blog__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease;
}

.page-blog__faq-item[open] .page-blog__faq-question {
  border-bottom-color: #2E7A4E;
}

.page-blog__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

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

.page-blog__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Hide default details marker */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* CTA Banner Section */
.page-blog__cta-banner {
  background: linear-gradient(180deg, #13994A 0%, #0A4B2C 100%); /* Deep Green to darker */
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
}

.page-blog__cta-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-blog__cta-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog__hero-content-wrapper {
    margin-top: -80px;
  }
  .page-blog__hero-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog__container {
    padding: 0 15px;
  }
  .page-blog__section {
    padding: 40px 0;
  }
  .page-blog__hero-content-wrapper {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-blog__hero-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__posts-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__category-card {
    font-size: 1em;
    padding: 20px 15px;
  }
  .page-blog__post-image {
    height: 180px;
  }
  .page-blog__post-title {
    font-size: 1.2em;
  }
  .page-blog__post-summary {
    font-size: 0.9em;
  }
  .page-blog__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-blog__faq-answer {
    font-size: 0.95em;
    padding: 15px;
  }
  .page-blog__cta-banner {
    padding: 60px 15px;
  }
  .page-blog__cta-title {
    font-size: 1.6em;
  }
  .page-blog__cta-description {
    font-size: 1em;
  }
  /* Mobile responsive for all images */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog__hero-image-wrapper,
  .page-blog__post-card,
  .page-blog__category-card,
  .page-blog__cta-banner,
  .page-blog__posts-grid,
  .page-blog__categories-grid,
  .page-blog__faq-list,
  .page-blog__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  /* Buttons responsive */
  .page-blog__hero-button,
  .page-blog__view-all-button,
  .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-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-content-wrapper {
    margin-top: -40px;
  }
  .page-blog__hero-title {
    font-size: clamp(1.2em, 8vw, 1.8em);
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__cta-title {
    font-size: 1.4em;
  }
  .page-blog__hero-button,
  .page-blog__view-all-button,
  .page-blog__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-blog__post-image {
    height: 150px;
  }
}