/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #024bd2;
    --text-color: #333333;
    --text-light: #ffffff;
    --bg-color: #fff;

    /* Typography */
    --font-family: "Roboto Condensed", Arial, sans-serif;
    --font-size-xs: 0.6rem;
    --font-size-sm: 0.8rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;

    /* Spacing */
    --letter-spacing-xs: 0.1rem;
    --letter-spacing-sm: 0.3rem;

    --line-height-base: 1.5;
    --line-height-md: 1.7;

    /* Border Radius */
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

}

/* Reset và Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}