
        :root {
            --primary: #0044cc;
            --secondary: #0378a9;
            --dark: #010101;
            --light: #f4f4f4;
            --white: #ffffff;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }

        header {
            background: var(--dark);
            color: var(--white);
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-img {
            max-height: 50px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .hero {
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/26c195007944b894aae7335fae091351_S.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        article {
            border: 1px solid #ddd;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .card-img {
            width: 100%;
            height: 200px;
            background: #eee;
            margin-bottom: 10px;
            border-radius: 4px;
            background-size: cover;
            background-position: center;
        }

        footer {
            background: var(--dark);
            color: var(--white);
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            header { flex-direction: column; }
            nav ul { flex-wrap: wrap; justify-content: center; }
        }
    