    /* Custom styles to define the theme */
    :root {
        --bg-dark: #1a1f1d;
        /* A very dark, slightly green-tinted black */
        --bg-card: #252a28;
        /* A slightly lighter shade for cards/posts */
        --text-main: #c9c9c9;
        /* Soft white for body text */
        --text-headings: #e0e0e0;
        /* Brighter white for headings */
        --accent-green: #5E8B7E;
        /* Muted, earthy green */
        --accent-brown: #A27B5C;
        /* Warm, light brown */
        --border-color: #3a413e;
    }

    /* Base Body & Typography */
    body {
        background-color: var(--bg-dark);
        color: var(--text-main);
        font-family: 'Inter', sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin: 0;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    /* Subtle background texture */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url('https://www.transparenttextures.com/patterns/subtle-carbon.png');
        opacity: 0.03;
        z-index: -1;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Playfair Display', serif;
        color: var(--text-headings);
    }

    p {
        line-height: 1.7;
    }

    a {
        color: var(--accent-green);
        text-decoration: none;
    }

    main {
        flex-grow: 1;
    }

    /* Layout Container */
    .container {
        width: 90%;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .content-wrapper {
        max-width: 768px;
        /* max-w-3xl */
        margin-left: auto;
        margin-right: auto;
    }

    /* Header & Navigation */
    .main-header {
        padding-top: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .header-icon {
        width: 3rem;
        /* w-12 */
        height: 3rem;
        /* h-12 */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        /* mb-4 */
        color: var(--accent-green);
    }

    .header-title {
        font-size: 2.25rem;
        /* text-4xl */
        font-weight: 600;
        /* font-semibold */
        letter-spacing: -0.025em;
        /* tracking-tight */
    }

    .header-subtitle {
        margin-top: 0.5rem;
        /* mt-2 */
        font-size: 1.125rem;
        /* text-lg */
        color: var(--accent-brown);
    }

    .main-nav {
        margin-top: 1.5rem;
        /* mt-6 */
    }

    .main-nav a {
        font-size: 1.125rem;
        /* text-lg */
        margin: 0 0.75rem;
        color: var(--text-main);
        transition: color 0.3s ease;
    }

    .main-nav a:hover {
        color: var(--accent-green);
    }

    /* Main Content & Blog Posts */
    .main-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .blog-post {
        background-color: var(--bg-card);
        padding: 1.5rem;
        margin-bottom: 3rem;
        border-radius: 0.5rem;
        /* rounded-lg */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        /* shadow-lg */
        border-left: 4px solid var(--accent-green);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-post-meta {
        color: var(--accent-brown);
        font-size: 0.875rem;
        /* text-sm */
        font-weight: 500;
        /* font-medium */
    }

    .blog-post-title {
        font-size: 1.875rem;
        /* text-3xl */
        font-weight: 700;
        /* font-bold */
        margin-top: 0.5rem;
        /* mt-2 */
        margin-bottom: 1rem;
        /* mb-4 */
    }

    .blog-post-excerpt {
        font-size: 1.125rem;
        /* text-lg */
        line-height: 1.75;
        /* leading-relaxed */
        margin-bottom: 1.5rem;
        /* mb-6 */
    }

    /* Button Styling */
    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        /* pill shape */
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        background-color: var(--accent-green);
        color: #fff;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        filter: brightness(1.1);
    }

    /* Footer */
    .main-footer {
        padding-top: 2rem;
        padding-bottom: 2rem;
        border-top: 1px solid var(--border-color);
        text-align: left;
    }

    .footer-text {
        color: #6b7280;
        /* text-gray-500 */
    }

    .footer-subtext {
        color: #4b5563;
        /* text-gray-600 */
        font-size: 0.875rem;
        /* text-sm */
        margin-top: 0.25rem;
        /* mt-1 */
    }

    /* Responsive styles */
    @media (min-width: 768px) {
        .header-title {
            font-size: 3rem;
            /* md:text-5xl */
        }

        .blog-post {
            padding: 2rem;
            /* md:p-8 */
        }
    }