:root {
    /* Color Palette */
    --primary: #109051;
    --secondary: #D28F32;
    --white: #ffffff;
    --black: #1a1a1a;
    --grey-light: #f4f6f8;

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Effects */
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 40px rgba(16, 144, 81, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    font-family: var(--font-main);
    color: var(--black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}