:root {
    /* Colors */
    --primary-color: #8DC63F;
    /* Vibrant Green */
    --primary-hover: #7ab332;
    --secondary-color: #2C3E50;
    /* Dark Slate */
    --secondary-hover: #1abc9c;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --bg-dark: #222222;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition: all 0.3s ease;
}