
    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: #fefaf6;
        color: #333;
    }

    header {
        background: #3e2614;
        padding: 15px 30px;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        font-size: 28px;
        font-weight: 700;
        color: #f4c86a;
        text-decoration: none;
    }

    .nav-menu {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .nav-menu li a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-menu li a:hover {
        color: #f4c86a;
    }

    .hero {
        background: linear-gradient(rgba(62,38,20,0.6), rgba(62,38,20,0.6)), url('blog-banner.jpg') center/cover no-repeat;
        color: #fff;
        text-align: center;
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .hero p {
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .blog-container {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0;
    }

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

    .blog-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-8px);
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .blog-content h3 {
        font-size: 22px;
        color: #3e2614;
        margin-bottom: 10px;
    }

    .blog-content p {
        font-size: 16px;
        color: #555;
        margin-bottom: 15px;
    }

    .price {
        font-weight: bold;
        color: #d8a84a;
    }

    .read-more {
        display: inline-block;
        background: #3e2614;
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        transition: background 0.3s ease;
    }

    .read-more:hover {
        background: #f4c86a;
        color: #3e2614;
    }

    footer {
        background: #3e2614;
        color: #fff;
        text-align: center;
        padding: 18px 10px;
        font-size: 15px;
        margin-top: 40px;
    }

    footer a {
        color: #f4c86a;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    @media(max-width:768px){
        .hero h1 { font-size: 32px; }
        .hero p { font-size: 16px; }
    }
