<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Sophisticated Cleaners Blog Styles - Modern, Clean, Competitive */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&amp;display=swap');

:root {
    --brand-gold: #D1A82E;
    --brand-gold-light: #f4e7b5;
    --brand-gold-dark: #b38c1d;
    --brand-gold-shimmer1: #e6c552;
    --brand-gold-shimmer2: #f7efd1;
    --brand-bg: #f4f4f4;
    --brand-dark: #333333;
    --brand-white: #fff;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--brand-bg);
    color: var(--brand-dark);
    margin: 0;
    padding: 0;
}

/* Header &amp; Footer Styling from main site */
header {
    background: var(--brand-white);
    border-bottom: 1px solid var(--brand-gold-light);
    padding: 1rem 0;
}
header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link img {
    display: block;
    max-height: 80px;
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}
header nav ul li a {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
    color: var(--brand-gold-dark);
    border-bottom-color: var(--brand-gold);
}

footer {
    background: var(--brand-white);
    padding: 2rem 0;
    border-top: 1px solid var(--brand-gold-light);
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--brand-dark);
}
.footer-logo {
    margin-bottom: 1rem;
}
.footer-col p {
    margin: 0 0 1rem 0;
    color: var(--brand-dark);
    font-size: 0.95rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    text-decoration: none;
    color: var(--brand-dark);
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--brand-gold-dark);
}
.social-icons {
    display: flex;
    gap: 0.75rem;
}
.social-icon {
    display: inline-block;
    background: var(--brand-gold);
    color: var(--brand-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    transition: background 0.2s, transform 0.2s;
}
.social-icon:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    color: var(--brand-dark);
    font-size: 0.85rem;
}

.blog-header {
    background: var(--brand-white);
    border-bottom: 1px solid var(--brand-gold-light);
    padding: 2rem 0 1rem 0;
    text-align: center;
}
.blog-header nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.blog-header .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-gold);
    text-decoration: none;
    letter-spacing: 1px;
}
.blog-header nav a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border 0.2s;
}
.blog-header nav a.active,
.blog-header nav a:hover {
    border-bottom: 2px solid var(--brand-gold);
}
.subtitle {
    color: var(--brand-gold-dark);
    margin-top: 0.5rem;
    font-size: 1.15rem;
}
.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: var(--brand-white);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(209, 168, 46, 0.08);
    overflow: hidden;
    max-width: 350px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.blog-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(209, 168, 46, 0.16);
}
.blog-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}
.blog-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.blog-card-content {
    padding: 1.25rem 1rem 1rem 1rem;
}
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--brand-dark);
}
.blog-excerpt {
    color: var(--brand-gold-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.blog-date {
    font-size: 0.95rem;
    color: var(--brand-gold);
}
.blog-footer {
    background: var(--brand-white);
    border-top: 1px solid var(--brand-gold-light);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    color: var(--brand-gold-dark);
    font-size: 1rem;
}

/* Blog Post Page */
.blog-post {
    max-width: 900px;
    margin: 2.5rem auto 0 auto;
    background: var(--brand-white);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(209, 168, 46, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 2rem;
}
.blog-post h1 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    color: var(--brand-gold);
}
.blog-post-image {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 16px var(--brand-gold-shimmer1);
}
.blog-content {
    font-size: 1.13rem;
    line-height: 1.7;
    color: var(--brand-dark);
}

/* Section layout for blog posts */
.two-column-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
}
.two-column-section.reverse {
    flex-wrap: wrap-reverse;
}
.two-column-section .section-content {
    flex: 2;
    min-width: 220px;
}
.two-column-section .section-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    flex: 1;
    min-width: 180px;
    max-width: 300px;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(209,168,46,0.12);
}
.section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.5rem 0;
}
.section-cta p {
    text-align: center;
    max-width: 500px;
    margin: 0;
}
.section-cta .shimmer {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}
.section-image-cta {
    width: 100%;
    max-width: 540px;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(209,168,46,0.16);
    margin-bottom: 1.5rem;
}

/* Gold accents for blog posts */
.blog-post h1 {
    color: var(--brand-gold-dark);
    border-bottom: 4px solid var(--brand-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
.blog-post h2 {
    color: var(--brand-gold-dark);
    border-left: 4px solid var(--brand-gold);
    padding-left: 0.75rem;
    margin: 2rem 0 1rem 0;
}
.blog-post strong {
    color: var(--brand-gold-dark);
}
.blog-post a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-post a:hover {
    color: var(--brand-gold-dark);
    text-decoration: underline;
}

/* Gold shimmer effect for accents */
.shimmer {
    background: linear-gradient(90deg, var(--brand-gold-shimmer1), var(--brand-gold-shimmer2), var(--brand-gold-shimmer1));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Article Carousel Styles */
.article-carousel {
    margin: 4rem 0 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--brand-gold-light);
}
.article-carousel h3 {
    text-align: center;
    color: var(--brand-gold-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}
.carousel-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 250px;
    background: var(--brand-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(209,168,46,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(209,168,46,0.2);
}
.carousel-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.carousel-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.carousel-item-content {
    padding: 1rem;
}
.carousel-item h4 {
    color: var(--brand-gold-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}
.carousel-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--brand-dark);
}
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.carousel-button {
    background: var(--brand-gold-light);
    color: var(--brand-gold-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.2s ease;
}
.carousel-button:hover {
    background: var(--brand-gold);
    color: var(--brand-white);
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .blog-list {
        gap: 1.2rem;
    }
    .blog-card {
        max-width: 95vw;
    }
    .blog-post {
        padding: 1.2rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .blog-header, .blog-footer {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .blog-list {
        padding: 1rem 0.2rem;
    }
    .blog-post {
        margin: 1rem 0 0 0;
        padding: 1rem 0.2rem;
    }
}
</pre></body></html>