:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a6fb9f7 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --green-dark: #1a3d2b;
    --green-mid: #2d5a3d;
    --green-accent: #3a7a52;
    --green-light: #e8f4ec;
    --black: #111111;
    --off-white: #f9f8f5;
    --white: #ffffff;
    --gray-text: #555555;
    --border: #d8e8dc;
  }
 
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
  }
 
  /* HERO */
  .hero {
    background: var(--green-dark);
    color: var(--white);
    padding: 80px 40px 90px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.04);
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 20%;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 40px solid rgba(255,255,255,0.04);
  }
  .hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 720px;
  }
  .hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }
  .hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    max-width: 620px;
    margin-bottom: 36px;
    line-height: 1.75;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .hero-cta:hover { background: #f0f0f0; transform: translateY(-1px); }
  .hero-cta svg { width: 16px; height: 16px; }
 
  /* SECTION WRAPPER */
  .section { padding: 72px 40px; }
  .section-inner { max-width: 900px; margin: 0 auto; }
  .section-alt { background: var(--off-white); }
 
  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 12px;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .lead {
    font-size: 17px;
    color: var(--gray-text);
    max-width: 680px;
    margin-bottom: 40px;
  }
 
  /* WHY CHOOSE */
  .checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 36px;
  }
  .check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 22px;
  }
  .check-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .check-icon svg { width: 14px; height: 14px; color: var(--green-dark); }
  .check-item p { font-size: 15px; font-weight: 500; color: var(--black); margin: 0; }
 
  /* SERVICES GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 36px;
  }
  .service-card {
    background: var(--green-dark);
    color: var(--white);
    border-radius: 6px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .service-card .num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    display: block;
  }
  .service-card h3 { font-size: 16px; font-weight: 500; line-height: 1.35; }
 
  /* PROCESS STEPS */
  .steps { margin-top: 40px; }
  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    margin-bottom: 0;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px; top: 52px;
    width: 2px; height: calc(100% - 4px);
    background: var(--border);
  }
  .step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
  }
  .step-content { padding-bottom: 36px; }
  .step-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; padding-top: 12px; }
  .step-content p { font-size: 15px; color: var(--gray-text); }
 
  /* SEO KEYWORDS */
  .seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
  }
  .seo-tag {
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
  }
 
  /* CTA BLOCK */
  .cta-block {
    background: var(--green-dark);
    border-radius: 12px;
    padding: 60px 48px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .cta-block::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.05);
  }
  .cta-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 14px;
    color: var(--white);
  }
  .cta-block p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 32px; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 15px; font-weight: 600;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: #f0f0f0; }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--white);
    font-size: 15px; font-weight: 500;
    padding: 15px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
 
  /* DIVIDER */
  .divider { width: 48px; height: 3px; background: var(--green-dark); margin-bottom: 32px; border-radius: 2px; }
 
  @media (max-width: 600px) {
    .hero, .section { padding-left: 22px; padding-right: 22px; }
    .cta-block { padding: 40px 24px; }
    .step { grid-template-columns: 40px 1fr; }
    .step-num { width: 40px; height: 40px; font-size: 16px; }
  }/* End custom CSS */