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

.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 as body handles --header-offset */
  background-color: #11A84E; /* Main color for hero background */
  overflow: hidden;
}

.page-blog__hero-image {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-blog__hero-content {
  max-width: 900px;
  z-index: 1;
  color: #F2FFF6;
}

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

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

.page-blog__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-blog__cta-button--center {
  margin: 30px auto 0 auto;
  display: block;
  max-width: fit-content;
}

.page-blog__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6;
}

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

.page-blog__overview-section, .page-blog__content-types, .page-blog__how-to-use, .page-blog__conclusion-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog__why-choose-us, .page-blog__benefits-section, .page-blog__faq-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

.page-blog__text-block strong {
  color: #F2FFF6;
}

.page-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #F2FFF6;
}

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

.page-blog__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-blog__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6;
}

.page-blog__list-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2AD16F; /* Highlight with a brighter green */
}

.page-blog__list-item p {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog__benefits-item {
  display: flex;
  align-items: flex-start;
  background-color: #08160F; /* Background */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-blog__benefits-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-blog__benefits-content {
  flex-grow: 1;
}

.page-blog__benefits-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-blog__benefits-content p {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__ordered-list {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__ordered-list-item {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__ordered-list-item strong {
  color: #F2FFF6;
}

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

.page-blog__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  border-bottom: 1px solid transparent; /* Ensure smooth transition */
  transition: background-color 0.3s ease;
}

.page-blog__faq-question:hover {
  background-color: #22C768; /* Auxiliary color for hover */
}

.page-blog__faq-item[open] .page-blog__faq-question {
  background-color: #22C768; /* Auxiliary color when open */
  border-bottom-color: #2E7A4E; /* Border */
}

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

.page-blog__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: inherit;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
  transform: rotate(45deg);
}

.page-blog__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__faq-answer p {
  margin-bottom: 10px;
}

.page-blog__faq-answer a {
  color: #2AD16F; /* Button color for links */
  text-decoration: none;
}

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

/* Remove default details marker */
.page-blog__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog__faq-item summary {
  list-style: none;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    padding: 0 15px;
  }
  .page-blog__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-blog__container {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog__hero-image {
    max-height: 300px;
  }
  .page-blog__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog__hero-description {
    font-size: 1rem;
  }
  .page-blog__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog__cta-button--center {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog__grid {
    grid-template-columns: 1fr;
  }
  .page-blog__feature-card {
    padding: 20px;
  }
  .page-blog__card-image {
    height: 180px;
  }
  .page-blog__benefits-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-blog__benefits-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-blog__list-item {
    padding: 15px;
  }
  .page-blog__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog__faq-answer {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  /* Mobile image, video, and container adaptations */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog video,
  .page-blog__video {
    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__overview-section,
  .page-blog__why-choose-us,
  .page-blog__content-types,
  .page-blog__benefits-section,
  .page-blog__how-to-use,
  .page-blog__faq-section,
  .page-blog__conclusion-section,
  .page-blog__video-section,
  .page-blog__video-container,
  .page-blog__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .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;
  }
  .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;
  }
  .page-blog__cta-buttons {
    flex-direction: column;
  }
}