/* css/style.css - Optimized for performance */
:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary: #f8f9fa;
    --accent: #e8f0fe;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

/* Critical above-the-fold CSS */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Rest of your CSS styles... (copy all the CSS from your style tag here) */