:root {
    --mist-bg: #eaf1ed;
    --mist-panel: #ffffff;
    --forest-green: #2c7a5b;
    --forest-light: #4caf82;
    --mist-text: #4a5d54;
    --mist-title: #1a3328;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--mist-bg);
    color: var(--mist-text);
    font-family: 'Georgia', serif; /* Soft serif for a healing vibe */
    line-height: 1.8;
}

/* Mist effect */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, transparent 100%);
    z-index: -1;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Wrapper - Centered column style, soft edges */
.wrap { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

/* Nav */
.header { text-align: center; margin-bottom: 60px; }
.brand { font-size: 32px; color: var(--forest-green); letter-spacing: 2px; margin-bottom: 20px;}
.nav-line { display: flex; justify-content: center; gap: 30px; border-top: 1px solid rgba(44, 122, 91, 0.2); border-bottom: 1px solid rgba(44, 122, 91, 0.2); padding: 15px 0;}
.nav-line a { font-family: sans-serif; font-size: 14px; text-transform: uppercase; color: var(--mist-text); }
.nav-line a:hover { color: var(--forest-green); }

/* Hero */
.hero { text-align: center; margin-bottom: 80px; }
.hero h1 { font-size: 48px; color: var(--mist-title); margin-bottom: 20px; font-weight: normal;}
.hero p { font-size: 18px; color: var(--mist-text); max-width: 600px; margin: 0 auto 40px;}
.hero-btn { 
    display: inline-block; background: var(--forest-green); color: #fff;
    padding: 15px 40px; border-radius: 50px; font-family: sans-serif; font-weight: bold;
    box-shadow: 0 10px 20px rgba(44, 122, 91, 0.2);
}
.hero-btn:hover { background: var(--forest-light); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(44, 122, 91, 0.3);}

/* Alternating Blocks */
.block { background: var(--mist-panel); padding: 50px; border-radius: 30px; margin-bottom: 40px; box-shadow: 0 15px 30px rgba(0,0,0,0.02);}

.b-title { font-size: 28px; color: var(--mist-title); margin-bottom: 30px; text-align: center; font-weight: normal;}

/* Trust - Small inline */
.trust-line { text-align: center; font-family: sans-serif; font-size: 13px; color: var(--forest-light); margin-bottom: 40px;}
.trust-line span { margin: 0 15px; }

/* Stats - Minimal grid */
.stat-grid { display: flex; justify-content: space-around; text-align: center; }
.st-b strong { display: block; font-size: 36px; color: var(--forest-green); }
.st-b span { font-family: sans-serif; font-size: 12px; color: var(--mist-text); text-transform: uppercase; letter-spacing: 1px;}

/* Features - Text heavy, elegant */
.f-txt { margin-bottom: 40px; }
.f-txt:last-child { margin-bottom: 0; }
.f-txt h3 { font-size: 20px; color: var(--mist-title); margin-bottom: 10px; }
.f-txt p { color: var(--mist-text); }

/* Nodes - Tags */
.n-tags { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.n-t { background: var(--mist-bg); padding: 10px 20px; border-radius: 20px; font-family: sans-serif; font-size: 14px; color: var(--forest-green); border: 1px solid rgba(44, 122, 91, 0.1);}

/* Reviews */
.r-wrap { display: flex; flex-direction: column; gap: 30px; }
.r-card { font-style: italic; border-left: 2px solid var(--forest-light); padding-left: 20px; }
.r-card .s { color: var(--forest-light); font-size: 12px; margin-bottom: 10px; font-family: sans-serif;}
.r-card b { display: block; margin-top: 10px; font-family: sans-serif; font-size: 12px; color: var(--mist-title); font-style: normal;}

/* FAQ - Minimal */
.fq-item { margin-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px;}
.fq-q { font-size: 16px; color: var(--mist-title); cursor: pointer; display: flex; justify-content: space-between;}
.fq-a { font-family: sans-serif; font-size: 14px; color: var(--mist-text); margin-top: 15px; display: none; }

.footer { text-align: center; font-family: sans-serif; font-size: 12px; color: var(--mist-text); padding: 20px; }

@media (max-width: 600px) {
    .nav-line { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero h1 { font-size: 36px; }
    .stat-grid { flex-direction: column; gap: 30px; }
    .block { padding: 30px 20px; }
}