:root {
    --primary: #2C5282;
    --secondary: #4299E1;
    --accent: #BEE3F8;
    --text: #2D3748;
    --light: #F7FAFC;
    --error: #F56565;
    --success: #48BB78;
    --warning: #ECC94B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button.primary {
    background: var(--secondary);
    color: white;
}

.button.primary:hover {
    background: var(--primary);
}

.button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.button.secondary:hover {
    background: var(--light);
}