* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #e8e3db;
        }

        header {
            background: #e8e3db;
            padding: 1.5rem 0;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-left a, .nav-right a {
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: #8b7355;
        }

        .logo {
            font-size: 2rem;
            font-weight: 1000;
            color: #333;
            font-family: 'Cinzel Decorative', serif;
            font-variant: small-caps;
            text-decoration: none;
        }

        .hero-section {
            height: 400px;
            border-radius: 50px;
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 2rem 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
        }

        .brand {
            color: #ffffff;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;;
        }

        .hero-content p {
            font-size: 1.3rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            font-weight: 400;
            opacity: 0.95;
            line-height: 1.6;
        }

        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 3rem;
        }

        .filter-section {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid transparent;
            border-radius: 50px;
            color: #555;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, #8b7355 0%, #c5a87a 100%);
            color: white;
            border-color: #8b7355;
        }

        .featured-post {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .featured-post:hover {
            border-color: #d4a5a5;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .featured-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }

        .featured-image {
            height: 500px;
            background: linear-gradient(135deg, rgba(139, 115, 85, 0.2) 0%, rgba(197, 168, 122, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }

        .featured-content {
            padding: 3rem;
        }

        .post-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8b7355 0%, #c5a87a 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .post-title {
            font-size: 2.5rem;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            line-height: 1.3;
        }

        .post-meta {
            display: flex;
            gap: 1.5rem;
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .post-excerpt {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .read-more {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #78614cba, #c5956b97);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .post-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .post-card:hover {
            transform: translateY(-10px);
            border-color: #d4a5a5;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .post-image {
            height: 250px;
            background: linear-gradient(135deg, rgba(139, 115, 85, 0.2) 0%, rgba(197, 168, 122, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .post-body {
            padding: 2rem;
        }

        .post-card .post-badge {
            margin-bottom: 0.8rem;
        }

        .post-card .post-title {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }

        .post-card .post-meta {
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .post-card .post-excerpt {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .newsletter-section {
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            border-radius: 30px;
            padding: 5rem 3rem;
            margin: 5rem 0;
            text-align: center;
        }

        .newsletter-section h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .newsletter-section p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: white;
            background: white;
        }

        .newsletter-btn {
            padding: 14px 36px;
            background: white;
            color: #8b7355;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin: 0.5rem 0;
        }

        @media (max-width: 1100px) {
            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .hero-section {
                height: 400px;
                margin: 1rem 1.5rem;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .blog-container {
                padding: 3rem 1.5rem;
            }

            .featured-layout {
                grid-template-columns: 1fr;
            }

            .featured-image {
                height: 300px;
            }

            .posts-grid {
                grid-template-columns: 1fr;
            }

            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .post-title {
                font-size: 2rem;
            }

            .featured-content {
                padding: 2rem;
            }
        }