<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header &amp; Navigation */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

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

.logo-with-image {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    color: #1C1C2D;
    letter-spacing: -0.5px;
}

.logo-subline {
    font-size: 12px;
    color: #38a852;
    font-weight: 600;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #1C1C2D;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #F8F9FA;
    color: #38a852;
}

/* Main Content */
.main {
    min-height: calc(100vh - 120px);
    padding: 40px 0;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.blog-header p {
    font-size: 1.2em;
    color: #666;
}

/* Blog Posts List */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.post-preview {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
}

.post-preview:last-child {
    border-bottom: none;
}

.post-preview h2 {
    margin-bottom: 15px;
}

.post-preview h2 a {
    color: #333;
    text-decoration: none;
    font-size: 1.5em;
    line-height: 1.3;
}

.post-preview h2 a:hover {
    color: #38a852;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #38a852;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.coming-soon {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

/* Individual Blog Post */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9em;
    color: #666;
}

.breadcrumb a {
    color: #38a852;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post {
    max-width: none;
}

.post-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.post-header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #333;
}

.post-meta {
    color: #666;
    font-size: 0.9em;
}

.post-content {
    margin-bottom: 40px;
}

.post-content h2 {
    font-size: 1.6em;
    margin: 30px 0 15px 0;
    color: #333;
}

.post-content h3 {
    font-size: 1.3em;
    margin: 25px 0 12px 0;
    color: #333;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.post-content blockquote {
    border-left: 4px solid #38a852;
    padding: 15px 20px;
    margin: 25px 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
}

.post-footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.post-footer a {
    color: #38a852;
    text-decoration: none;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 15px;
    }

    .logo-with-image {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-image {
        height: 40px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 18px;
        border: 1px solid #e5e5e5;
        margin-bottom: 5px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .blog-header h1 {
        font-size: 2em;
    }
    
    .post-header h1 {
        font-size: 1.8em;
    }
    
    .post-content h2 {
        font-size: 1.4em;
    }
    
    .post-content h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 20px 0;
    }
    
    .blog-header {
        margin-bottom: 30px;
    }
    
    .blog-posts {
        gap: 30px;
    }
    
    .post-preview {
        padding-bottom: 20px;
    }
}</pre></body></html>