:root {
    --primary-color: #000000; /* Negro */
    --secondary-color: #2196F3; /* Azul */
    --accent-color: #1565C0; /* Azul oscuro */
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: var(--text-color);
}

p {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
} 