.page-blog {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for visual separation */
  background: linear-gradient(180deg, #11A84E 0%, #0A4B2C 100%); /* Deep Green background for hero */
  color: #F2FFF6; /* Light text color for dark background */
  text-align: center;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

.page-blog__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog__main-title {
  font-size: clamp(2.2em, 5vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

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

.page-blog__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #11A84E; /* Main brand color for titles */
  text-align: center;
}

.page-blog__dark-bg .page-blog__section-title {
  color: #F2FFF6;
}

.page-blog__sub-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #11A84E;
}

.page-blog__dark-bg .page-blog__sub-title {
  color: #22C768;
}

.page-blog p {
  margin-bottom: 15px;
  color: #333333;
}

.page-blog__dark-bg p,
.page-blog__dark-bg li {
  color: #F2FFF6;
}

.page-blog__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog__list-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-blog__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 25px auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-blog__btn-secondary {
  background: #0A4B2C;
  color: #F2FFF6;
  border: 2px solid #2AD16F;
}

.page-blog__btn-secondary:hover {
  background: #11A84E;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog__dark-bg {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Light text for dark background */
}

.page-blog__light-bg {
  background-color: #ffffff; /* White background for light sections */
  color: #333333; /* Dark text for light background */
}

.page-blog__faq-section {
  padding: 40px 20px;
  background-color: #11271B; /* Card BG color */
  color: #F2FFF6;
}

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

.page-blog__faq-item {
  background-color: #08160F;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6;
  list-style: none; /* For details tag */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

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

.page-blog__faq-qtext {
  flex-grow: 1;
  padding-right: 10px;
}

.page-blog__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #22C768;
}

.page-blog__faq-answer {
  padding: 0 20px 15px;
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-blog__cta-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #ffffff;
  color: #333333;
}

.page-blog__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog__cta-title {
  font-size: 2.5em;
  color: #11A84E;
  margin-bottom: 20px;
}

.page-blog__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog__main-title {
    font-size: 2em;
  }

  .page-blog__intro-text,
  .page-blog__cta-description {
    font-size: 1em;
  }

  .page-blog__section-title {
    font-size: 1.8em;
  }

  .page-blog__sub-title {
    font-size: 1.4em;
  }

  .page-blog__cta-title {
    font-size: 2em;
  }

  .page-blog__cta-button {
    width: 100%;
    margin: 10px 0;
  }

  .page-blog__hero-section,
  .page-blog__content-area,
  .page-blog__faq-section,
  .page-blog__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog__hero-image-wrapper,
  .page-blog__content-area,
  .page-blog__container,
  .page-blog__faq-section,
  .page-blog__cta-section,
  .page-blog__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog__cta-button,
  .page-blog__btn-primary,
  .page-blog__btn-secondary,
  .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;
    padding-right: 15px;
  }
}