.services-wrapper {
    background-color: #f8fafc;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  }
  
  .service-block-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .service-block-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
  }

  .service-block-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: rgba(250, 184, 44, 0.4);
  }

  .service-block-card:hover::before {
    background: #fab82c; /* Brand Gold */
  }

  .service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
  }

  .service-block-card:hover .service-icon-wrapper {
    background: #fab82c;
    color: #111827;
    border-color: #fab82c;
    transform: scale(1.05);
  }

  .service-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111827;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
  }

  .service-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #fab82c;
    font-size: 11px;
  }

  .service-card-footer {
    padding-top: 16px;
    margin-top: 20px;
    border-top: 1px solid #f1f5f9;
  }

  .btn-consultation-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
  }

  .btn-consultation-link:hover {
    color: #d97706;
  }

  /* Add justified alignment to paragraph text inside service cards */
  .service-block-card p {
    text-align: justify;
    text-justify: inter-word; /* Ensures clean spacing between words */
  }

  /* Optional: Justify list item descriptions as well if desired */
  .service-list li {
    text-align: justify;
  }