/* Extracted from joint-replacement.php head style block 1 */
.cancer-care-hero {
      background: linear-gradient(135deg, #003f7d 0%, #0f74aa 50%, #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;
      margin-bottom: 1.25rem;
      text-align: center;
      position: relative;
      padding-bottom: 14px;
    }

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

    #services {
      background: linear-gradient(140deg, rgba(15, 116, 170, 0.07) 0%, rgba(32, 167, 186, 0.07) 100%);
    }

    .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 26px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(15, 116, 170, 0.13);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 35px rgba(15, 116, 170, 0.2);
      border-color: #0f74aa;
    }

    .service-card h5 {
      color: #003c78;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .service-card p {
      color: #545454;
      line-height: 1.65;
    }

    .icon-circle {
      background: linear-gradient(135deg, #005d9e 0%, #20a7ba 100%);
      color: #fff;
      border-radius: 50%;
      width: 68px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 15px;
      box-shadow: 0 8px 18px rgba(15, 116, 170, 0.28);
    }

    .list-unstyled.small li {
      margin-bottom: 6px;
      color: #244a67;
    }

    .list-group-item {
      border: none;
      border-left: 4px solid #0f74aa;
      margin-bottom: 9px;
      border-radius: 8px;
      box-shadow: 0 2px 9px rgba(0, 0, 0, 0.05);
      font-weight: 500;
    }

    .img-fluid.rounded.shadow {
      border: 3px solid #eef4f8;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .img-fluid.rounded.shadow:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(15, 116, 170, 0.22);
    }

    .cta-section {
      background: linear-gradient(135deg, #003c78 0%, #0f74aa 50%, #20a7ba 100%);
      color: #fff;
      text-align: center;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      width: 480px;
      height: 480px;
      right: -140px;
      top: -180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
    }

    .cta-section .container {
      position: relative;
      z-index: 1;
    }

    .cta-section .btn {
      border-radius: 40px;
      font-weight: 700;
      padding: 12px 30px;
    }

    footer {
      background: linear-gradient(135deg, #002b57 0%, #003c78 100%);
      color: #fff;
      padding: 20px 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;
      }

      .service-card {
        padding: 22px;
      }

      .cta-section {
        padding: 64px 0;
      }
    }

