.banner-sec {
      width: 100%;
      height: 450px;
      position: relative;
      color: white;
      text-align: center;
      margin-bottom: 40px;
    }
    .banner-sec img {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
    }
    .banner-sec .overlay {
      width: 100%;
      height: 450px;
      background-color: rgba(0, 35, 82, 0.7);
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
    }
    .banner-sec .header-sec {
      margin: auto;
      width: 100%;
    }
    .banner-sec h1 {
      color: #fff;
      font-size: 3.5em;
      font-weight: bold;
      margin: 0 0 8px;
    }

    .main-layout {
      display: flex;
      width: 100%;
      min-height: 100vh;
      margin-bottom: 50px;
    }
    .left-column {
      width: 25%;
      height: auto;
      display: flex;
      flex-direction: column;
    }
    .services-list {
      flex: 1;
      max-height: 450px;
      padding: 10px;
      border-radius: 8px;
      overflow-y: auto;
      margin-bottom: 20px;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      scrollbar-width: thin;
      scrollbar-color: var(--color-primary) #f0f0f0;
      background: #fff;
    }
    .all-services {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .all-services li { margin-bottom: 10px; }
    .all-services a {
      text-decoration: none;
      background-color: #eee;
      color: #333;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border-radius: 4px;
    }
    .all-services a img {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .all-services a:hover {
      background-color: var(--color-dark);
      color: #fff;
    }
    .all-services .current-post {
      background-color: var(--color-dark);
      color: white;
    }
    .contact-sec {
      padding: 10px;
      background-color: #f1f1f1;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 30px;
    }
    .contact-sec h3 {
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--color-dark);
    }
    .contact-sec p {
      margin: 0;
      font-size: 0.9em;
    }
    .contact-sec .doctor-name-sec::after {
      content: "";
      display: block;
      height: 3px;
      background: linear-gradient(to left, #ffffff, var(--color-primary));
      margin-top: 10px;
      margin-bottom: 10px;
    }
    .mobile-contact-sec { display: none; }
    .right-column {
      width: 75%;
      padding: 20px;
      max-height: 980px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--color-primary) #f0f0f0;
    }
    .post-content {
      line-height: 1.6em;
      background: #fff;
      border-radius: 12px;
      padding: 1.5rem 2rem;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .post-content h2, .post-content h3 {
      color: var(--color-dark);
      margin-bottom: 12px;
    }
    .post-content ul { padding-left: 20px; }
    .services-list::-webkit-scrollbar,
    .right-column::-webkit-scrollbar { width: 3px; }
    .services-list::-webkit-scrollbar-track,
    .right-column::-webkit-scrollbar-track { background: #f0f0f0; }
    .services-list::-webkit-scrollbar-thumb,
    .right-column::-webkit-scrollbar-thumb {
      background-color: var(--color-primary);
      border-radius: 5px;
    }
    .mobile-button { display: none; }
    .desktop-button {
      height: 45px;
      width: 100%;
      text-align: center;
      display: flex;
      margin-bottom: 10px;
    }
    .desktop-button a {
      padding: 10px;
      border: 1px solid;
      background-color: var(--color-primary);
      border-radius: 6px;
      color: #fff;
      font-weight: bold;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .desktop-button a:hover { color: #fff; background: var(--color-dark); }
    .img-sec-doctor-desk img,
    .img-sec-doctor-desk .doctor-photo {
      height: 220px;
      width: 180px;
      border-radius: 19px;
      background-color: #0111271f;
      max-width: 100%;
      object-fit: cover;
    }

@media (max-width: 768px) {
  .banner-sec, .banner-sec .overlay { height: 145px !important; }
  .banner-sec h1 { font-size: 2.3em; }
  .left-column { display: none; }
  .right-column {
    width: 100%;
    max-height: none;
  }
  .main-layout { flex-direction: column; }
  .mobile-button {
    padding-left: 20px;
    display: block !important;
  }
  .mobile-button a {
    padding: 10px;
    border: 1px solid;
    background-color: var(--color-primary);
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
  }
  .mobile-contact-sec { display: block !important; }
}

@media (max-width: 576px) {
  .post-content { padding: 1.25rem; }
}

.service-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--color-card-blue);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
}

.faq-list {
  margin: 1rem 0 1.5rem;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.65rem;
  background: #fafbfd;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: #444;
  line-height: 1.6;
}