:root {
    --primary-dark: #0B2315;
    --primary-green: #1f6e43;
    --accent-yellow: #FFEF99;
    --text-dark: #1a2c3e;
    --text-muted: #3e5a4e;
    --bg-light: #fafcfd;
    --border-light: #e2edf2;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.4;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.section:last-child {
    border-bottom: none;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: #0f5437;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 110, 67, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
    cursor: pointer;
    font-family: inherit;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}