/* Breadcrumb Section */
.breadcrumb-section {
  position: relative;
  height: 281px;
  background-image: url('../assets/breadcrumb.png');
  background-color: #f2f8f5;
  background-size: auto 450px;
  background-position: 5% bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  font-size: 34px;
  color: #0c121d;
  margin-bottom: 15px;
  text-transform: capitalize;
  line-height: 1.2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px;
}

.breadcrumb-nav li {
  color: #797979;
}

.breadcrumb-nav li a {
  color: #797979;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav li a:hover {
  color: #2dc457;
}

.breadcrumb-nav li.active {
  color: #797979;
}

.breadcrumb-nav .separator img {
  width: 6px;
  height: 9px;
}

/* Main Content Section */
.main-content {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Hero Image */
.hero-image-container {
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  max-height: 607px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Content Section */
.content-section {
  max-width: 1312px;
  margin: 0 auto;
}

/* Q&A Sections */
.qa-section {
  margin-bottom: 30px;
}

.qa-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 34px;
  color: #0c121d;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #797979;
  line-height: 2;
}

.service-description p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .breadcrumb-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .main-content {
    padding: 60px 0;
  }

  .hero-image {
    max-height: 450px;
  }

  .qa-section {
    margin-bottom: 44px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
    height: 220px;
    background-size: auto 280px;
    background-position: center bottom;
  }

  .breadcrumb-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .service-description {
    font-size: 15px;
  }

  .main-content {
    padding: 40px 0;
  }

  .hero-image {
    max-height: 350px;
  }

  .hero-image-container {
    margin-bottom: 32px;
  }

  .qa-section {
    margin-bottom: 36px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-section {
    min-height: 180px;
    padding: 30px 0;
    background-size: auto 120%;
  }

  .breadcrumb-title {
    font-size: 20px;
  }

  .breadcrumb-item {
    font-size: 14px;
  }

  .section-title {
    font-size: 18px;
  }

  .service-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-image {
    max-height: 250px;
  }

  .qa-section {
    margin-bottom: 28px;
  }
}
