:root {
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Earthy, Satvic Palette */
    --primary: #2d6a4f;     /* Deep Jungle Green */
    --primary-light: #d8f3dc; /* Mint */
    --accent: #d4a373;      /* Earthy Paper/Sand */
    --dark: #1b4332;        /* Very Dark Green */
    
    --bg-body: #fdfbf7;     /* Warm White / Paper */
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    
    --radius: 12px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
}

.font-serif { font-family: var(--font-serif); }

a { text-decoration: none; transition: all 0.2s ease; }
.hover-dark:hover { color: var(--text-main) !important; }

.btn-success {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-success:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

.brand-icon { width: 40px; height: 40px; }

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: radial-gradient(circle at top right, var(--primary-light) 0%, transparent 40%);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.timeline-step {
    border-left: 2px solid var(--primary-light);
    padding-left: 2rem;
    position: relative;
    padding-bottom: 2rem;
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
}

.feature-icon {
    width: 64px; 
    height: 64px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
