
        :root {
            --primary: #2f5bb7;
            --secondary: #ff8302;
            --bg: #d0ae81;
            --text: #333;
            --white: #ffffff;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        header {
            background-color: var(--primary);
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        nav {
            background: #222;
            padding: 1rem;
            text-align: center;
        }

        nav a {
            color: var(--white);
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }

        .container {
            max-width: 960px;
            margin: 20px auto;
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
        }

        .hero-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .post { margin-bottom: 40px; border-bottom: 2px solid #eee; padding-bottom: 20px; }
        
        .icon-email {
            display: inline-block;
            width: 20px;
            height: 16px;
            background: #666;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 20%, 50% 50%, 100% 20%);
        }

        footer {
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .container { width: 90%; }
        }
    