
  :root {
    /* Brochure colour palette */
    --primary-color: #7A233B;
    --secondary-color: #f9f5f4;
    --accent-color: #D4A0A5;
    --text-color: #333;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .feature-box i {
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  body {
    /*
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    */
  }
  .service-hero {
    background: linear-gradient(135deg, var(--secondary-color) 60%, #fff 100%);
    padding: 4rem 1rem;
    text-align: center;
  }
  .service-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
  }
  .service-hero p.tagline {
    font-size: 1.25rem;
    color: black; 
    margin-bottom: 2rem;
  }
  .hero-cta {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  .hero-cta:hover {
    background-color: #50081b;
  }
  .service-content {
    padding: 3rem 1rem;
    background-color: #f9f6f1;
  }
  .service-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .feature-box {
    background-color: white; /*var(--secondary-color); #e4f0e7;  */
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  /*
  .feature-box:hover {
    
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    
  }
  */
  .feature-box svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    stroke: #eeb90a; /* var(--primary-color); */
    stroke-width: 2;
    fill: none;
  }
  .feature-box h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  .feature-box p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
  }
  .service-content .intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    text-align: center;
  }
  .service-content .description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .bottom-cta {
    text-align: center;
    margin-top: 3rem;
  }

  @media (max-width: 600px) {
    .service-hero h1 { font-size: 2rem; }
    .service-hero p.tagline { font-size: 1.1rem; }
    .feature-box h3 { font-size: 1rem; }
  }
