        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #d4af37;
        }

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--white) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(182,108,83,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(141,139,99,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(212,175,55,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            z-index: -1;
        }

        /* Floating elements */
        .floating-element {
            position: fixed;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
            z-index: -1;
        }

        .floating-element:nth-child(1) {
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 70%;
            right: 12%;
            animation-delay: 3s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 6s;
        }

        .floating-element:nth-child(4) {
            top: 40%;
            right: 25%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(5deg); }
        }

        /* Header */
        .page-header {
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
        }

        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
            border-radius: 3px;
        }

        .page-title {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            color: var(--dark-brown);
            position: relative;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--sage);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Blog Section */
        .blog-section {
            padding: 60px 0 100px;
        }

        .blog-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            position: relative;
            padding: 50px;
        }

        .blog-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
        }

        /* Blog Posts */
        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }

        .blog-card-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }

        .blog-card-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--terracotta);
            padding: 0.8rem 1.2rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .blog-card-content {
            padding: 30px;
        }

        .blog-card-category {
            display: inline-block;
            background: var(--beige);
            color: var(--terracotta);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-card-title {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: var(--dark-brown);
            line-height: 1.4;
        }

        .blog-card-excerpt {
            color: var(--dark-brown);
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 0.9rem;
        }

        .blog-card-author {
            display: flex;
            align-items: center;
        }

        .blog-card-author img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }

        .blog-card-readmore {
            color: var(--terracotta);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .blog-card-readmore:hover {
            color: var(--sage);
            transform: translateX(5px);
        }

        .blog-card-readmore i {
            margin-left: 5px;
            font-size: 0.8rem;
        }

        /* Featured Post */
        .featured-post {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .featured-post .blog-card-image {
            height: 100%;
        }

        .featured-post .blog-card-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-post .blog-card-title {
            font-size: 2.2rem;
        }

        .featured-post .blog-card-excerpt {
            font-size: 1.1rem;
        }

        /* Categories */
        .categories-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .category-btn {
            background: var(--beige);
            color: var(--terracotta);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover, .category-btn.active {
            background: var(--terracotta);
            color: var(--white);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .page-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 5px;
            color: var(--dark-brown);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .page-link:hover, .page-link.active {
            background: var(--terracotta);
            color: var(--white);
            border-color: var(--terracotta);
        }

        .page-link.prev, .page-link.next {
            background: var(--beige);
            width: auto;
            padding: 0 20px;
            border-radius: 50px;
        }

        .page-link.prev:hover, .page-link.next:hover {
            background: var(--terracotta);
            color: var(--white);
        }

        .page-link.prev i {
            margin-right: 8px;
        }

        .page-link.next i {
            margin-left: 8px;
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, rgba(182, 108, 83, 0.9), rgba(141, 139, 99, 0.8));
            padding: 60px 0;
            margin-top: 80px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
        }

        .newsletter-container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .newsletter-title {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }

        .newsletter-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            color: var(--dark-brown);
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--gold);
        }

        .newsletter-btn {
            background: var(--gold);
            color: var(--white);
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--dark-brown);
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }

        @media (max-width: 991.98px) {
            .blog-container {
                padding: 40px;
            }

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

            .featured-post .blog-card-image {
                height: 350px;
            }
        }

        @media (max-width: 767.98px) {
            .page-header {
                padding: 80px 0 50px;
            }

            .page-title {
                font-size: 2.8rem;
            }

            .blog-container {
                padding: 30px;
            }

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

            .featured-post .blog-card-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 575.98px) {
            .page-header {
                padding: 70px 0 40px;
            }

            .page-title {
                font-size: 2.2rem;
            }

            .blog-container {
                padding: 25px 20px;
            }

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

            .newsletter-input {
                border-radius: 50px;
                margin-bottom: 15px;
            }

            .newsletter-btn {
                border-radius: 50px;
                padding: 1rem;
            }
        }
