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

    .cancer-care-hero {
      background: linear-gradient(135deg, #6a1b42 0%, #a9285f 55%, #de5c88 100%);
      color: #fff;
      text-align: center;
      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: -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, #7a1f4c 0%, #af2d66 100%);
      color: #fff;
      box-shadow: 0 8px 20px rgba(99, 25, 61, 0.22);
    }

    .section-title {
      color: #7a1f4c;
      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: 74px;
      height: 4px;
      background: linear-gradient(90deg, #af2d66 0%, #de5c88 100%);
      border-radius: 4px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
    }

    .highlight-section {
      background: linear-gradient(140deg, rgba(175, 45, 102, 0.08) 0%, rgba(222, 92, 136, 0.08) 100%);
      padding: 60px 0;
    }

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

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

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

    .icon-box:hover {
      box-shadow: 0 16px 35px rgba(175, 45, 102, 0.2);
      transform: translateY(-7px);
      border-color: #af2d66;
    }

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

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

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

    footer {
      background: linear-gradient(135deg, #541232 0%, #7a1f4c 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;
      }
    }

