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

.page-blog__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #F4F7FB; /* Background */
  position: relative;
  overflow: hidden;
}

.page-blog__hero-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.page-blog__hero-content {
  max-width: 900px;
  padding: 20px;
  margin-top: 20px;
  z-index: 1;
}

.page-blog__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog__description {
  font-size: 18px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-blog__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-blog__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-blog__btn-secondary:hover {
  background: #f0f0f0;
  color: #2F6BFF;
}

.page-blog__article-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-blog__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog__article-body {
  background: #FFFFFF; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog__section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 25px;
  margin-top: 40px;
  line-height: 1.3;
}

.page-blog__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog__article-body p {
  font-size: 17px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
}

.page-blog__article-body ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-blog__article-body ul li {
  font-size: 17px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 8px;
}

.page-blog__article-body .highlight {
  color: #2F6BFF;
  font-weight: 600;
}

.page-blog__image-container {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog__image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog__button-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog__cta-final {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

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

details.page-blog__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

details.page-blog__faq-item summary.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-blog__faq-item summary.page-blog__faq-question:hover {
  background: #f0f5ff;
}

.page-blog__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main */
}

.page-blog__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-blog__faq-item .page-blog__faq-answer {
  padding: 0 25px 20px;
  background: #f9fcff;
  border-radius: 0 0 10px 10px;
  color: #1F2D3D; /* Text Main */
  font-size: 16px;
}

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

.page-blog__related-posts {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-blog__post-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog__post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  padding: 15px 20px 10px;
  line-height: 1.4;
}

.page-blog__card-excerpt {
  font-size: 15px;
  color: #1F2D3D; /* Text Main */
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-blog__read-more {
  display: block;
  color: #2F6BFF;
  font-weight: 600;
  padding: 10px 20px 20px;
  font-size: 15px;
}

.page-blog__read-more span {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.page-blog__post-card:hover .page-blog__read-more span {
  margin-left: 10px;
}

.page-blog__link {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-blog__link:hover {
  color: #6FA3FF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    max-width: 700px;
  }
  .page-blog__article-body {
    padding: 30px;
  }
  .page-blog__main-title {
    font-size: clamp(26px, 3.5vw, 42px);
  }
  .page-blog__section-title {
    font-size: clamp(22px, 2.8vw, 32px);
  }
  .page-blog__sub-title {
    font-size: clamp(18px, 2.2vw, 24px);
  }
  .page-blog__description, .page-blog__article-body p, .page-blog__article-body ul li {
    font-size: 16px;
  }
  .page-blog__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  details.page-blog__faq-item summary.page-blog__faq-question {
    padding: 15px 20px;
  }
  .page-blog__faq-qtext {
    font-size: 16px;
  }
  .page-blog__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  .page-blog__faq-answer {
    font-size: 15px;
  }
  .page-blog__post-card img {
    
  }
  .page-blog__card-title {
    font-size: 18px;
  }
  .page-blog__card-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 849px) {
  .page-blog__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .page-blog__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog__hero-content {
    padding: 15px;
  }
  .page-blog__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-blog__description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-blog__cta-button {
    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__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 15px;
  }
  .page-blog__article-section, .page-blog__faq-section, .page-blog__related-posts {
    padding: 40px 0;
  }
  .page-blog__content-wrapper {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog__article-body {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog__section-title {
    font-size: clamp(20px, 6vw, 28px);
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog__sub-title {
    font-size: clamp(18px, 5vw, 22px);
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-blog__article-body p, .page-blog__article-body ul li {
    font-size: 15px;
  }
  .page-blog__image-container {
    margin: 20px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog__image-container img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  details.page-blog__faq-item summary.page-blog__faq-question {
    padding: 15px;
  }
  .page-blog__faq-qtext {
    font-size: 15px;
  }
  .page-blog__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-blog__faq-item .page-blog__faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }
  .page-blog__post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog__post-card img {
    
  }
  .page-blog__card-title {
    font-size: 17px;
    padding: 12px 15px 8px;
  }
  .page-blog__card-excerpt {
    font-size: 13px;
    padding: 0 15px 12px;
  }
  .page-blog__read-more {
    padding: 8px 15px 15px;
    font-size: 14px;
  }
}