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

    .cancer-care-hero {
      background: linear-gradient(135deg, #0072ce 0%, #00a8e8 55%, #00d4ff 100%);
      color: #fff;
      padding: 110px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .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: -130px;
      top: -170px;
    }

    .cancer-care-hero::after {
      width: 300px;
      height: 300px;
      left: -120px;
      bottom: -130px;
      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, #0062b8 0%, #00a8e8 100%);
      color: #fff;
      box-shadow: 0 8px 20px rgba(0, 114, 206, 0.22);
    }

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

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

    .content-box {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
      padding: 35px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(0, 168, 232, 0.12);
    }

    .content-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 35px rgba(0, 168, 232, 0.18);
      border-color: #00a8e8;
    }

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

    .highlight {
      background: linear-gradient(140deg, rgba(0, 168, 232, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
      border-left: 5px solid #00a8e8;
      padding: 24px;
      border-radius: 12px;
    }

    .overview-section ul {
      margin-left: 1.2rem;
    }

    .overview-section ul li {
      margin-bottom: 10px;
    }

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

    @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;
      }

      .content-box {
        padding: 26px;
      }
    }

