/* AFA Design System Variables */
:root {
    /* Brand Colors */
    --primary: #04303B;
    --secondary: #39B54A;

    /* AFA Brand Colors (alternative naming) */
    --afa-primary: #04303B;
    --afa-primary-dark: #022128;
    --afa-secondary: #39B54A;
    --afa-green: #39B54A;
    --afa-accent: #39B54A;
    --afa-accent-hover: #2d9139;

    /* Color System */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-theme-black: #333333;
    --color-theme-white: #ffffff;
    --color-theme-white-box: #ffffff;

    /* Text Colors */
    --text-dark: #333333;
    --text-muted: #767676;
    --text-light: #666666;
    --global-font-color: #333333;
    --global-font-title: #04303B;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f7f7f7;
    --global-body-bgcolor: #ffffff;

    /* Border Colors */
    --border-light: #e8e8e9;
    --border-gray: #e5e7eb;
    --border-color-light: #e8e8e9;

    /* Status Colors */
    --success: #7ad03a;
    --warning: #ffba00;
    --danger: #a00;
    --info: #720eec;

    /* Typography */
    --font-family-base: 'Helvetica Neue';
    --highlight-font-family: 'Helvetica Neue';
    --font-size-base: 16px;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-normal: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-weight-regular: 400;
    --font-weight-semi-bold: 600;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 50%;
    --border-radius-box: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 15px rgba(0, 0, 0, 0.1);
    --global-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* Container Widths */
.afa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}
