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

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-blog__hero-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-blog__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog__cta-button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog__cta-button--secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-blog__cta-button--secondary:hover {
  background-color: #F2C14E;
  color: #08160F;
  transform: translateY(-2px);
}

.page-blog__section {
  padding: 60px 0;
  background-color: #08160F;
}

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

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

.page-blog__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
}

.page-blog__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-blog__paragraph {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
}

.page-blog__paragraph strong {
  color: #F2C14E; /* Gold */
}

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

.page-blog__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  width: 40%;
  max-width: 400px;
}

.page-blog__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
  width: 40%;
  max-width: 400px;
}

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

.page-blog__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog__list-item strong {
  color: #F2C14E;
}

.page-blog a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog a:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-blog__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-blog__article-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-blog__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog__article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #F2C14E; /* Gold */
}

.page-blog__article-title a {
  color: #F2C14E;
}

.page-blog__article-title a:hover {
  color: #57E38D;
}

.page-blog__article-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog__read-more {
  color: #57E38D; /* Glow */
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
}

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

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

.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;
  transition: all 0.3s ease;
}

.page-blog__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  list-style: none;
}

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

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

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

.page-blog__faq-item[open] .page-blog__faq-toggle {
  color: #F2C14E;
}

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

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

/* Clearfix for floated images */
.page-blog__section--history::after,
.page-blog__section--products::after,
.page-blog__section--advantages::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__image--right,
  .page-blog__image--left {
    width: 100%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-blog__main-title {
    font-size: 2rem;
  }

  .page-blog__intro-text {
    font-size: 1rem;
  }

  .page-blog__section-title {
    font-size: 2rem;
  }

  .page-blog__sub-title {
    font-size: 1.5rem;
  }

  .page-blog__paragraph,
  .page-blog__list-item,
  .page-blog__article-excerpt {
    font-size: 0.95rem;
  }

  .page-blog__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-left: 0;
  }

  .page-blog__cta-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-blog__cta-button--secondary {
    margin-left: 0;
  }

  .page-blog__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-blog__article-title {
    font-size: 1.2rem;
  }

  .page-blog__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

  /* Mobile image responsiveness */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog__section,
  .page-blog__card,
  .page-blog__container,
  .page-blog__hero-section,
  .page-blog__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog__hero-section {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog__hero-content-wrapper {
    position: static;
    transform: none;
    padding: 20px;
  }

  .page-blog__hero-image-wrapper {
    margin-bottom: 20px;
    max-height: 400px;
  }

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

  .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__dark-bg {
  color: #ffffff; /* Deep background with light text */
  background: #11A84E; /* Brand color */
}

.page-blog__light-bg {
  color: #333333; /* Light background with dark text */
  background: #ffffff;
}

.page-blog__medium-bg {
  color: #000000; /* Default dark text */
  background: #22C768;
}

.page-blog__content-area,
.page-blog__text-block {
  color: #F2FFF6; /* Text Main */
  background: #08160F; /* Background */
}

.page-blog p,
.page-blog li {
  color: #F2FFF6; /* Text Main */
}

.page-blog__card {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog__dark-section {
  background: #0A4B2C; /* Deep Green */
  color: #ffffff; /* Force white text */
}