:root {
    /* Colors */
    --primary-color: #007AFF;
    /* Vibrant iOS Blue */
    --primary-hover: #0056b3;
    --secondary-color: #1A1A2E;
    /* Deep Navy/Indigo */
    --secondary-hover: #16213E;
    --accent-color: #00C6FF;
    /* Electric Cyan Accent */
    --text-color: #2D3748;
    --text-light: #4A5568;
    --bg-light: #F7FAFC;
    --bg-white: #ffffff;
    --bg-dark: #1A202C;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition: all 0.3s ease;
}