
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* BREADCRUMB */
.breadcrumb {
  background: #eef3f8;
  padding: 12px 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #76AD4A;
  text-decoration: none;
}

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, #1A4331, #76AD4A);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 40px;
}

.page-banner p {
  margin-top: 10px;
  opacity: .9;
}

/* DETAIL LAYOUT */
.detail-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 90px;
}

/* LEFT CONTENT */
.detail-content {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.detail-content img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.detail-content h2 {
  color: #1A4331;
  margin-bottom: 10px;
}

.detail-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* RIGHT SIDEBAR */
.detail-sidebar {
  display: grid;
  gap: 20px;
}

.sidebar-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.sidebar-card h3 {
  margin-bottom: 10px;
  color: #1A4331;
}

/* ICON LIST */
.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.icon-list i {
  color: #76AD4A;
  font-size: 18px;
}

/* BUTTON */
.detail-btn {
  display: inline-block;
  background: #76AD4A;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 10px;
}

.detail-btn:hover {
  background: #1A4331;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}


/* SERVICE BANNER */
.service-banner h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-banner p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}

/* SERVICE DETAIL */
.service-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* DOCTOR IMAGE CARD */
.doctor-img-card img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* SIDEBAR CARDS */
.sidebar-card h3 {
  font-weight: 700;
  color: #1A4331;
  margin-bottom: 15px;
}
.icon-list {
  list-style: none;
  padding-left: 0;
}
.icon-list li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.icon-list li i {
  color: #76AD4A;
  margin-right: 8px;
}

/* BUTTON */
.sidebar-card .btn-primary {
  background-color: #76AD4A;
  border: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width:992px){
  .service-detail .col-lg-7,
  .service-detail .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .doctor-img-card {
    margin-bottom: 20px;
  }
}
