.page-blog {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-blog__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small padding as body handles header offset */
  margin-bottom: 40px;
  overflow: hidden;
  max-width: 100%;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  max-width: 100%;
  /* No fixed font-size, rely on clamp if needed, otherwise browser default */
}

.page-blog__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-blog__hero-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-blog__hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

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

.page-blog__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

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

.page-blog__article-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  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 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog__article-image {
  width: 100%;
  height: 225px;
  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.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-blog__article-title a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__article-title a:hover {
  color: #2F6BFF;
}

.page-blog__article-excerpt {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog__article-date {
  font-size: 0.85em;
  margin-bottom: 15px;
  display: block;
}

.page-blog__read-more-button {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(47, 107, 255, 0.2);
}

.page-blog__read-more-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(47, 107, 255, 0.3);
}

.page-blog__cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-blog__cta-content {
  max-width: 500px;
  text-align: center;
}

.page-blog__cta-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-blog__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-blog__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__cta-button--primary {
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-blog__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-blog__cta-button--secondary {
  box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-blog__cta-button--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(111, 163, 255, 0.4);
}

.page-blog__cta-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog__faq-section {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

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

.page-blog__faq-item {
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-blog__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-blog__faq-answer {
  font-size: 1em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    margin-bottom: 30px;
  }

  .page-blog__hero-content {
    padding: 20px 15px;
    margin-top: 15px;
  }

  .page-blog__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-blog__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog__hero-button {
    padding: 10px 24px;
    font-size: 0.9em;
  }

  .page-blog__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-blog__article-image {
    height: 180px;
  }

  .page-blog__article-title {
    font-size: 1.15em;
  }

  .page-blog__article-excerpt {
    font-size: 0.9em;
  }

  .page-blog__cta-section {
    flex-direction: column;
    padding: 40px 15px;
    margin-bottom: 40px;
  }

  .page-blog__cta-content {
    max-width: 100%;
  }

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

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

  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog__cta-button {
    width: 100%;
  }

  .page-blog__faq-section {
    margin-bottom: 40px;
  }

  .page-blog__faq-question {
    font-size: 1.1em;
  }

  .page-blog__faq-answer {
    font-size: 0.95em;
  }

  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}