/* ===============================
   BASE
================================ */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-500.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    position: relative;
}

section + section {
    border-top: 1px solid #f2f2f2;
}

h1, h2, h3 {
    margin: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 90px;
    letter-spacing: -0.5px;
    color: #195306;
}

.accent {
    color: #195306;
}