
    /* Hero Section with Dark Overlay */
    .hero-landing {
      background-position: center;
      padding: 10px 0 10px 0;
      color: white;
    }
    
    /* Green Label */
    .hero-badge {
      background-color: #ec2e32; 
      text-align: center;
      color: white;
      padding: 6px 16px;
      border-radius: 4px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
      display: inline-block;
      margin-bottom: 20px;
    }

    /* Trust Bar Indicators */
    .trust-bar { background: #fff; border-bottom: 1px solid #eee; padding: 25px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
    .trust-item { font-weight: 600; color: #333; display: flex; align-items: center; justify-content: center; font-size: 15px; }
    .trust-item i { color: #28a745; margin-right: 8px; font-size: 18px; }

    /* Service Cards */
    .service-box {
      background: #fff;
      border: 1px solid #f0f0f0;
      padding: 30px 20px;
      border-radius: 6px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border-color: #28a745;
    }
    .icon-circle {
      width: 70px;
      height: 70px;
      background: #f4fcf6; /* Very light green */
      color: #28a745;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
    }

    /* Sticky Mobile Call Button */
    .mobile-call-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #28a745; /* Green */
      color: white;
      padding: 15px;
      text-align: center;
      font-weight: 700;
      font-size: 18px;
      z-index: 9999;
      display: none;
      text-decoration: none !important;
      box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    }
    .mobile-call-bar:hover { color: white; background: #218838; }
    @media(max-width: 768px) { .mobile-call-bar { display: block; } .footer { padding-bottom: 70px; } }
    
    /* Checklist Style */
    .brit-list li { margin-bottom: 12px; position: relative; padding-left: 30px; font-size: 1.05rem; }
    .brit-list li:before {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      color: #28a745;
      position: absolute;
      left: 0;
      top: 4px;
    }
