:root {
    /* YesCoach logo colors */
    --color-primary: #4A8FE3;        /* Blue from logo */
    --color-primary-dark: #3B7DD8;   /* Darker blue for hover */
    --color-secondary: #E53935;      /* Red from logo */
    --color-accent: #5B8DEF;         /* Light blue accent */
    --color-warm: #E67E22;           /* Contrast-adjusted orange */
    --color-warm-dark: #D35400;      /* Darker orange for hover */
    --color-charcoal: #1a1a1a;
    --color-stone: #F5F5DC;
    --color-pure-light: #FFFFFF;
    --color-soft-shadow: #E8E8E8;
    --color-text: #2C2C2C;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #6B6B6B;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-pure-light);
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Header */
header {
    padding: var(--space-lg) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

/* Footer */
footer {
    border-top: 1px solid var(--color-soft-shadow);
    padding: var(--space-lg) 0;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

footer a {
    color: var(--color-accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
