/* Extracted from neurosurgery.php head style block 1 */
body {
      line-height: 1.7;
      color: #2f3a45;
      background: #fff;
    }

    .cancer-care-hero {
      background: linear-gradient(135deg, #003f7d 0%, #0f74aa 52%, #20a7ba 100%);
      color: #fff;
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    .cancer-care-hero::before,
    .cancer-care-hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      pointer-events: none;
    }

    .cancer-care-hero::before {
      width: 420px;
      height: 420px;
      right: -120px;
      top: -160px;
    }

    .cancer-care-hero::after {
      width: 290px;
      height: 290px;
      left: -100px;
      bottom: -120px;
      background: rgba(255, 255, 255, 0.08);
    }

    .cancer-care-hero h1,
    .cancer-care-hero .lead,
    .cancer-care-hero .d-flex {
      position: relative;
      z-index: 1;
    }

    .breadcrumb {
      background: rgba(255, 255, 255, 0.18);
      border-radius: 40px;
      padding: 10px 18px;
      width: fit-content;
      margin: 0 auto 1.5rem;
      backdrop-filter: blur(8px);
    }

    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.95);
      text-decoration: none;
      font-weight: 500;
    }

    .breadcrumb-item.active {
      color: #fff;
      font-weight: 700;
    }

    .appointment-bar {
      background: linear-gradient(90deg, #005d9e 0%, #0f74aa 100%);
      color: #fff;
      box-shadow: 0 8px 20px rgba(6, 67, 120, 0.2);
    }

    .section-title {
      color: #003c78;
      font-weight: 800;
      text-align: center;
      margin-bottom: 1.4rem;
      position: relative;
      padding-bottom: 14px;
      border-left: 0;
      padding-left: 0;
    }

    .section-title::after {
      content: "";
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #0f74aa 0%, #20a7ba 100%);
      border-radius: 4px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
    }

    .overview-section ul {
      padding-left: 1.1rem;
    }

    .overview-section ul li {
      margin-bottom: 0.45rem;
    }

    .highlight-section {
      background: linear-gradient(140deg, rgba(15, 116, 170, 0.07) 0%, rgba(32, 167, 186, 0.07) 100%);
      padding: 60px 0;
    }

    .icon-box {
      text-align: center;
      padding: 28px 24px;
      border: 1px solid rgba(15, 116, 170, 0.15);
      border-radius: 16px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      background: #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      height: 100%;
    }

    .icon-box:hover {
      box-shadow: 0 16px 35px rgba(15, 116, 170, 0.18);
      transform: translateY(-7px);
      border-color: #0f74aa;
    }

    .icon-box i {
      color: #0f74aa;
      font-size: 35px;
      margin-bottom: 14px;
      display: inline-block;
    }

    .icon-box h5 {
      color: #003c78;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .icon-box p {
      margin-bottom: 0;
      color: #59626b;
    }

    footer {
      background: linear-gradient(135deg, #002b57 0%, #003c78 100%);
      color: #fff;
      text-align: center;
      padding: 20px 0;
    }

    @media (max-width: 768px) {
      .cancer-care-hero {
        padding: 80px 0;
      }

      .cancer-care-hero h1 {
        font-size: 2rem;
      }

      .cancer-care-hero .lead {
        font-size: 1.05rem;
      }

      .appointment-bar .container {
        flex-direction: column;
        gap: 10px;
      }

      .icon-box {
        padding: 24px 20px;
      }
    }

