:root {
    --primary-green: #377E44; /* Close to screenshot */
    --bg-green: #3B754B; /* Image background */
    --text-main: #111827;
    --text-muted: #4b5563;
    --border-color: #E5E7EB;
    --bg-white: #ffffff;
    --bg-offwhite: #F9FAFB;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-serif-alt: 'Lora', Georgia, serif;

    /* Typography Scale */
    --fs-h1: clamp(2.125rem, 4vw, 4rem);
    --fs-h2: clamp(1.875rem, 3.5vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.875rem);
    --fs-card-title: clamp(1.125rem, 1.5vw, 1.375rem);
    --fs-body: clamp(0.9375rem, 1vw, 1.125rem);
    --fs-small: clamp(0.8125rem, 0.8vw, 0.9375rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px; /* Pill shape */
    transition: all 0.2s ease;
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: #c1c5cb;
    background-color: #f3f4f6;
}

.btn-primary {
    background-color: #1a2b25; /* Very dark green/black */
    color: white;
    border: 1px solid #1a2b25;
}

.btn-primary:hover {
    background-color: #2a4038;
}

main {
    width: 100%;
}

section {
    width: 100%;
}

section {
    width: 100%;
}
