
        :root {
            --primary: #004a82;
            --secondary: #0072c1;
            --accent: #00acee;
            --bg: #f4f4f4;
            --text: #333;
        }
        body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; margin: 0; background-color: var(--bg); color: var(--text); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .header { background: #fff; padding: 20px 0; border-bottom: 3px solid var(--primary); }
        .logo img { max-width: 250px; }
        .menu { background: var(--primary); color: #fff; }
        .menu nav ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; }
        .menu nav ul li a { color: #fff; padding: 15px; display: block; text-decoration: none; font-weight: bold; }
        .hero { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin: 20px 0; }
        .post-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin-bottom: 20px; padding: 15px; }
        .post-card img { width: 100%; height: auto; border-radius: 4px; }
        .row { display: flex; flex-wrap: wrap; gap: 20px; }
        .col-4 { flex: 1 1 300px; }
        .footer { background: #080808; color: #fff; padding: 40px 0; text-align: center; }
        .social-icon { display: inline-block; width: 40px; height: 40px; background: var(--secondary); border-radius: 50%; margin: 5px; line-height: 40px; color: #fff; text-align: center; }
        @media (max-width: 768px) { .hero { grid-template-columns: 1fr; } .menu nav ul { flex-direction: column; } }
    