:root{
    --muted-bg:#eef1f6;
    --accent:#0b66d1;
  }

  body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #222;
  }

  .sidebar-list a {
    display:block;
    padding:18px 22px;
    margin-bottom:14px;
    background: var(--muted-bg);
    border-radius:4px;
    color:#111;
    font-weight:600;
    text-decoration:none;
    transition:transform .12s, box-shadow .12s;
    border:1px solid rgba(0,0,0,0.04);
  }
  .sidebar-list a:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(11,102,209,0.06);
  }

  /* Contact card */
  .contact-card {
    background: #111;
    color: #fff;
    padding:28px;
    border-radius:6px;
    margin-top:20px;
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
  }
  .contact-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.55));
    pointer-events:none;
  }
  .contact-card .inner {
    position:relative;
    z-index:2;
  }
  .contact-card h5 { color:#61d1ff; font-weight:600; margin-bottom:12px;}
  .contact-card .big-phone { font-size:28px; font-weight:800; margin:6px 0 10px; color:#fff;}
  .contact-card .desc { color:#d7d7d7; margin-bottom:18px; }

  .hero-image {
    width:100%;
    height: auto;
    border-radius:6px;
    display:block;
    object-fit:cover;
    max-height:420px;
  }

  .ct-heading {
    margin-top:18px;
    margin-bottom:10px;
  }
  .ct-heading h1, .ct-heading h3 {
    font-weight:800;
    letter-spacing: -0.5px;
  }

  .ct-text-editor ol {
    margin-left: 1.1rem;
  }

  /* smaller devices: make sidebar sticky-ish feel */
  @media(min-width: 992px){
    .sidebar-col {
      position: sticky;
      top: 100px;
    }
  }

  /* little style for list bullets in right content */
  .ct-text-editor ol li {
    margin-bottom:10px;
    line-height:1.6;
  }