.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__section-spacing {
  padding: 60px 0;
}

.page-blog__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-blog__sub-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog__heading-4 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-blog__paragraph,
.page-blog__list-item {
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-blog__paragraph strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog__feature-list,
.page-blog__login-steps,
.page-blog__troubleshooting-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog__feature-list .page-blog__list-item,
.page-blog__login-steps .page-blog__list-item,
.page-blog__troubleshooting-list .page-blog__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.page-blog__feature-list .page-blog__list-item::before,
.page-blog__troubleshooting-list .page-blog__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-blog__login-steps .page-blog__list-item::before {
  counter-increment: step-counter;
  content: counter(step-counter) ". ";
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

/* Hero Section */
.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog__main-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-blog__intro-text {
  font-size: 19px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-blog__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

/* Latest Posts Section */
.page-blog__latest-posts {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

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

.page-blog__post-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-blog__post-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-blog__post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-blog__post-card:hover .page-blog__post-image {
  transform: scale(1.05);
}

.page-blog__post-content {
  padding: 25px;
}

.page-blog__post-date {
  display: block;
  font-size: 14px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-blog__post-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog__post-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
  color: #57E38D; /* Glow */
}

.page-blog__post-excerpt {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-blog__read-more {
  display: inline-block;
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-blog__read-more:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

/* Deep Dive Section */
.page-blog__deep-dive-section {
  background-color: #08160F; /* Background */
}

.page-blog__dark-section {
  background-color: #08160F;
}

.page-blog__text-main {
  color: #F2FFF6;
}

.page-blog__text-secondary {
  color: #A7D9B8;
}

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

.page-blog__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  padding-right: 10px;
}

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

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-blog__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
  color: #57E38D; /* Glow */
}

.page-blog__faq-answer {
  padding-top: 15px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  border-top: 1px solid #1E3A2A; /* Divider */
  margin-top: 15px;
  padding-left: 0;
  padding-right: 0;
}

/* CTA Section */
.page-blog__cta-section {
  background-color: #08160F; /* Background */
  padding: 80px 0;
}

.page-blog__cta-section .page-blog__container {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog__cta-section .page-blog__section-title {
  margin-bottom: 15px;
}

.page-blog__cta-section .page-blog__section-description {
  margin-bottom: 30px;
}

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

.page-blog__btn-primary,
.page-blog__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  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%); /* Button color */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border-color: #F2C14E; /* Gold */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-blog__btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(242, 193, 78, 0.1);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    max-width: 768px;
  }

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

@media (max-width: 768px) {
  .page-blog__section-spacing {
    padding: 40px 0;
  }

  .page-blog__section-title {
    font-size: 30px;
  }

  .page-blog__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-blog__sub-title {
    font-size: 28px;
  }

  .page-blog__heading-4 {
    font-size: 22px;
  }

  .page-blog__paragraph,
  .page-blog__list-item {
    font-size: 16px;
  }

  .page-blog__hero-section {
    padding-bottom: 40px;
  }

  .page-blog__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog__main-title {
    font-size: 38px;
  }

  .page-blog__intro-text {
    font-size: 17px;
  }

  .page-blog__post-image-wrapper {
    height: 180px;
  }

  .page-blog__post-title {
    font-size: 20px;
  }

  .page-blog__post-excerpt {
    font-size: 15px;
  }

  .page-blog__faq-item summary {
    font-size: 18px;
  }

  .page-blog__faq-answer {
    font-size: 15px;
  }

  .page-blog__cta-section .page-blog__container {
    padding: 30px 20px;
  }

  /* Mobile responsive for all images */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive for all containers */
  .page-blog__section,
  .page-blog__card,
  .page-blog__container,
  .page-blog__hero-section,
  .page-blog__latest-posts,
  .page-blog__deep-dive-section,
  .page-blog__faq-section,
  .page-blog__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-blog__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons mobile responsive */
  .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: 0;
    padding-right: 0;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }
}