:root {
    /* Brand Colors */
    --brand-primary: #C41E3A;
    --brand-dark: #1A1A1A;
    --brand-white: #FFFFFF;
    
    /* Neutrals */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset and Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: auto;
    min-height: 100%;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
