
        :root {
            --primary: #2d465f;
            --secondary: #c8b78e;
            --text: #333;
            --white: #ffffff;
            --accent: #0070ba;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text);
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background: var(--primary);
            color: var(--white);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
        }

        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { height: 40px; }

        nav ul { display: flex; list-style: none; gap: 20px; margin: 0; }
        nav a { color: var(--white); text-decoration: none; font-weight: bold; }
        nav a:hover { color: var(--secondary); }

        .hero {
            background-color: var(--primary);
            background-image: linear-gradient(rgba(45, 70, 95, 0.8), rgba(45, 70, 95, 0.8)), url('/assets/70118_193973.jpeg');
            background-size: cover;
            background-position: center;
            padding: 100px 5%;
            text-align: center;
            color: var(--white);
        }

        .hero h1 { font-size: 3rem; margin-bottom: 0.5rem; }

        .container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }

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

        .card {
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }

        .card img { max-width: 100%; height: auto; border-radius: 4px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

        footer {
            background: #1a1a1a;
            color: #ccc;
            text-align: center;
            padding: 40px 20px;
            margin-top: auto;
        }

        .social-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .social-icons img { width: 32px; height: 32px; }

        @media (max-width: 768px) {
            nav ul { flex-direction: column; align-items: center; }
            .hero h1 { font-size: 2rem; }
        }
    