:root {
    --primary: #2c6e49;
    --secondary: #4c956c;
    --light: #fefee3;
    --dark: #1b262c;
    --accent: #d8f3dc;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    color: var(--dark);
}
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.hero {
    background: linear-gradient(135deg, var(--accent) 0%, #e8f5e9 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.section {
    padding: 4rem 0;
}
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.step-item {
    text-align: center;
    padding: 1.5rem;
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}
.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
}
.testimonial::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
}
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.2rem 0;
}
.footer {
    background-color: var(--dark);
    color: white;
    padding: 2.5rem 0 1.5rem;
}
.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(76, 149, 108, 0.25);
}
.trust-badge {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}
h1, h2, h3, h4 {
    font-weight: 700;
}