:root {
    --primary: #fd8712e1;
    --primary-dark: #e05a50;
    --secondary: #333;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #495057;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --gray: #e9ecef;
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}





