
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3498db;
            --primary-dark: #2980b9;
            --secondary: #2c3e50;
            --accent: #9b59b6;
            --coffee: #6f4e37;
            --light: #ecf0f1;
            --gray: #7f8c8d;
            --light-gray: #bdc3c7;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --radius: 12px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--secondary);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 100px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid var(--primary);
            cursor: pointer;
        }

        .btn:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: var(--transition);
        }

        .header-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }

        /* Blog Hero Section */
        .blog-hero {
            padding: 180px 0 80px;
            background: linear-gradient(135deg, rgba(111, 78, 55, 0.1) 0%, rgba(155, 89, 182, 0.05) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--coffee) 0%, var(--accent) 100%);
            opacity: 0.1;
            z-index: -1;
        }

        .blog-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            color: var(--gray);
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-hero p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Blog Content */
        .blog-content {
            background: white;
        }

        .blog-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .blog-image {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }

        .blog-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .content-block {
            margin-bottom: 50px;
        }

        .content-block h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-left: 20px;
        }

        .content-block h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            height: 30px;
            width: 6px;
            background: var(--coffee);
            border-radius: 10px;
        }

        .content-block p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
        }

        .content-block ul, .content-block ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .content-block li {
            margin-bottom: 10px;
            color: var(--gray);
            line-height: 1.8;
        }

        .content-block blockquote {
            background: var(--light);
            border-left: 4px solid var(--coffee);
            padding: 30px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            position: relative;
        }

        .content-block blockquote::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 4rem;
            font-family: 'Playfair Display', serif;
            color: rgba(111, 78, 55, 0.2);
            line-height: 1;
        }

        .content-block .image-with-caption {
            margin: 40px 0;
            text-align: center;
        }

        .content-block .image-with-caption img {
            width: 100%;
            border-radius: var(--radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
        }

        .content-block .image-with-caption .caption {
            color: var(--gray);
            font-size: 0.9rem;
            font-style: italic;
        }

        .key-points {
            background: var(--light);
            padding: 30px;
            border-radius: var(--radius);
            margin: 40px 0;
            border-left: 4px solid var(--coffee);
        }

        .key-points h3 {
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .key-points ul {
            margin-left: 20px;
        }

        .key-points li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }

        .key-points li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 15px;
            height: 15px;
            background: var(--coffee);
            border-radius: 50%;
        }

        .coffee-tip {
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: var(--radius);
            padding: 25px;
            margin: 25px 0;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .coffee-tip:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .tip-icon {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: var(--coffee);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .tip-content {
            margin-top: 20px;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
        }

        .tag {
            background: var(--light);
            color: var(--secondary);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
        }

        /* Author Bio */
        .author-bio {
            background: var(--light);
            padding: 40px;
            border-radius: var(--radius);
            margin: 60px 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .author-bio-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: var(--shadow);
            border: 3px solid white;
        }

        .author-bio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-bio-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .author-bio-content p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--coffee);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        /* Related Posts */
        .related-posts {
            background: linear-gradient(to bottom, #f0f7ff 0%, #ffffff 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .section-title .divider {
            height: 4px;
            width: 80px;
            background: var(--coffee);
            margin: 0 auto;
            border-radius: 10px;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .post-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .post-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .post-image {
            height: 200px;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .post-card:hover .post-image img {
            transform: scale(1.1);
        }

        .post-content {
            padding: 25px;
        }

        .post-meta {
            display: flex;
            gap: 15px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .post-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .post-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .post-content a {
            color: var(--coffee);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .post-content a:hover {
            gap: 10px;
        }

        /* Newsletter */
        .newsletter {
            background: var(--coffee);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .newsletter .section-title h2 {
            color: white;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.8);
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: #8e44ad;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--coffee);
            transform: translateY(-5px);
        }

        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--coffee);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(111, 78, 55, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: #5a3a28;
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .author-bio {
                flex-direction: column;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                height: calc(100vh - 80px);
                padding: 40px 0;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
                text-align: center;
            }

            .blog-hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2.3rem;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .blog-meta {
                flex-direction: column;
            }

            .posts-grid {
                grid-template-columns: 1fr;
            }
        }
