
        
        :root {
            --primary: hsl(249, 95%, 59%);
            --primary-hover: hsl(249, 95%, 49%);
            --bg-base: hsl(220, 14%, 96%);
            --bg-surface: hsl(0, 0%, 100%);
            --text-main: hsl(222, 47%, 11%);
            --text-muted: hsl(215, 16%, 47%);
            --border-color: hsl(214, 32%, 91%);
            --radius: 6px;
            --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
            --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-base);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        
        .font-display, h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Responsive image grid helper */
        @media (max-width: 768px) {
            div[style*="display: flex"] {
                flex-direction: column !important;
                gap: 2rem !important;
            }
            div[style*="flex-direction: row-reverse"] {
                flex-direction: column !important;
            }
            header div[style*="display: flex"] {
                flex-direction: row !important;
                justify-content: space-between !important;
            }
            footer div[style*="display: flex"] {
                flex-direction: column !important;
                text-align: center;
            }
        }
    