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

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

.page-blog__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-blog__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp for responsive font size */
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

.page-blog__btn-primary,
.page-blog__btn-secondary,
.page-blog__btn-link,
.page-blog__card-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main for contrast */
  border: 2px solid transparent;
}

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

.page-blog__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Main color for contrast */
  border: 2px solid #2AD16F; /* Border */
}

.page-blog__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Background color for contrast */
}

.page-blog__content-section {
  padding: 60px 0;
}

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

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

.page-blog__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-blog__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

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

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

.page-blog__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-blog__card-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-blog__card-title a:hover {
  text-decoration: underline;
}

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

.page-blog__card-link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
}

.page-blog__card-link:hover {
  text-decoration: underline;
}

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

.page-blog__column-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  text-align: center;
}

.page-blog__column-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-blog__column-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-blog__column-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-blog__column-title a:hover {
  text-decoration: underline;
}

.page-blog__column-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-blog__btn-link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #2AD16F;
  border-radius: 5px;
}

.page-blog__btn-link:hover {
  background-color: #2AD16F;
  color: #08160F;
}

.page-blog__news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.page-blog__news-item {
  display: flex;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  align-items: center;
  padding: 15px;
}

.page-blog__news-image {
  width: 150px;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.page-blog__news-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
}

.page-blog__news-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-blog__news-title a:hover {
  text-decoration: underline;
}

.page-blog__news-meta {
  font-size: 0.85em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-blog__news-excerpt {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__btn-view-all {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog__faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog__faq-item details {
  width: 100%;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  border-bottom: 1px solid #2E7A4E; /* Border */
  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.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

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

.page-blog__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-blog__cta-description {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    max-width: 700px;
  }
  .page-blog__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }
  .page-blog__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-blog__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-blog__description {
    font-size: 1em;
  }
  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog__btn-primary,
  .page-blog__btn-secondary,
  .page-blog__btn-link,
  .page-blog__card-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-blog__content-section,
  .page-blog__faq-section,
  .page-blog__cta-bottom {
    padding: 40px 0;
  }
  .page-blog__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__section-description {
    font-size: 0.95em;
  }
  .page-blog__card-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__card-image {
    height: 180px;
  }
  .page-blog__card-title {
    font-size: 1.2em;
  }
  .page-blog__two-column-layout {
    grid-template-columns: 1fr;
  }
  .page-blog__column-image {
    height: 200px;
  }
  .page-blog__column-title {
    font-size: 1.3em;
  }
  .page-blog__news-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .page-blog__news-image {
    width: 100% !important;
    height: 150px !important;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-blog__news-title {
    font-size: 1.1em;
  }
  .page-blog__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog__faq-answer {
    padding: 15px 20px;
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
  .page-blog__cta-description {
    font-size: 1em;
  }

  /* Image responsive enforcement */
  .page-blog img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Video responsive enforcement */
  .page-blog video,
  .page-blog__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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;
  }
}