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

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, only small top padding here */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
  color: #F2FFF6; /* Text Main */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
}

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

.page-blog__btn-primary,
.page-blog__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  min-width: 180px;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-blog__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Deep Green */
  border: 2px solid #2AD16F; /* Deep Green */
}

.page-blog__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-blog__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  box-sizing: border-box;
}

.page-blog__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

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

.page-blog__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-blog__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #2AD16F; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

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

.page-blog__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Main color */
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.page-blog__ordered-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-blog__ordered-list .page-blog__list-item {
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* FAQ Section */
.page-blog__faq-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  box-sizing: border-box;
}

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

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

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

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

.page-blog__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter border color for hover */
}

.page-blog__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  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: #A7D9B8; /* Text Secondary */
  line-height: 1.8;
}

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

.page-blog__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

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

.page-blog__explore-more {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__explore-more a {
  color: #57E38D; /* Glow */
  font-weight: 600;
  text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    max-width: 80%;
  }
  .page-blog__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }
}

@media (max-width: 768px) {
  .page-blog__hero-content {
    position: static;
    transform: none;
    padding: 30px 20px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Add background to text block for better readability on smaller screens */
  }
  .page-blog__hero-image {
    filter: brightness(0.4); /* Darken image more for better contrast with text */
  }
  .page-blog__hero-section {
    padding: 0;
  }
  .page-blog__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 20px;
  }
  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog__btn-primary,
  .page-blog__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
    font-size: 1.05rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog__section {
    padding: 40px 0;
  }
  .page-blog__container {
    padding: 0 15px;
  }
  .page-blog__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-blog__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog__text-block,
  .page-blog__list-item,
  .page-blog__faq-question,
  .page-blog__faq-answer {
    font-size: 1rem;
  }

  /* Mobile image responsiveness */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog__section,
  .page-blog__card,
  .page-blog__container,
  .page-blog__hero-section,
  .page-blog__hero-image-wrapper,
  .page-blog__cta-buttons,
  .page-blog__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-blog__hero-section {
    padding-top: 0 !important; /* body handles header offset */
  }
}

@media (max-width: 480px) {
  .page-blog__section {
    padding: 30px 0;
  }
  .page-blog__hero-content {
    padding: 20px 15px;
  }
  .page-blog__main-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .page-blog__hero-description {
    font-size: clamp(0.85rem, 3vw, 0.9rem);
  }
  .page-blog__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog__faq-answer {
    padding: 0 20px 15px 20px;
  }
}