
        :root {
            --primary: #0d0d0d;
            --accent: #96bae0;
            --bg: #ffffff;
            --text: #1c1c28;
            --font-main: 'Quattrocento Sans', sans-serif;
            --font-heading: 'Americana', serif;
        }

        body {
            font-family: var(--font-main);
            color: var(--text);
            margin: 0;
            line-height: 1.6;
        }

        header {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--primary);
        }

        nav a {
            margin-left: 20px;
            text-decoration: none;
            color: var(--text);
            font-size: 0.9rem;
        }

        .hero {
            padding: 100px 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--bg), #f8f8f8);
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: #fff;
            border-radius: 40px;
            text-decoration: none;
            margin-top: 2rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 4rem 2rem;
        }

        .card {
            border: 1px solid #eee;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
        }

        .card-img-placeholder {
            width: 100%;
            height: 200px;
            background: #f0f0f0;
            border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
        }

        footer {
            background: var(--primary);
            color: #fff;
            padding: 4rem 2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            header { flex-direction: column; }
            nav { margin-top: 1rem; }
            .hero h1 { font-size: 2.5rem; }
        }
    