:root {
    --primary-color: #4e6e44; /* Muted green with grey */
    --primary-color-dark: #3b5322; /* Darker muted green */
    --secondary-color: #00c789; /* Cyan */
    --text-color: #333;
    --text-color-light: #ffffff;
    --text-color-muted: #6c757d;
    --background-light: #f8f9fa;
    --background-medium: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ff9800;
    --border-color: #ced4da;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --icon-color: var(--secondary-color);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 102, 2, 0.7);
    z-index: 1;
}