<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import a Google Font (Optional - Example: Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

body {
    font-family: 'Poppins', sans-serif;
    /* Apply the imported font */
    line-height: 1.6;
    color: #333;
    /* Default text color */
}

.navbar {
    background-color: #f7f0e7;
}

/* --- Navigation --- */
.navbar {
    transition: background-color 0.3s ease;
    /* Smooth transition for sticky nav */
}

.navbar-brand span {
    font-weight: 600;
    /* Slightly bolder brand name */
}

.navbar .nav-link {
    color: #555;
    /* Slightly muted nav links */
    transition: color 0.2s ease;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    /* Softer shadow for dropdowns */
}

.navbar .btn-primary {
    transition: all 0.3s ease;
    /* Smooth transition for button */
}

/* --- Hero Section --- */
.hero-section {
    background-color: #f7f0e7;
}

.hero-section h1 {
    color: #212529;
    /* Darker heading */
}

.hero-section .lead {
    color: #495057;
    /* Slightly lighter lead text */
    margin-bottom: 2rem;
    /* More space below lead text */
}

.hero-section .btn {
    margin-top: 10px;
}

.btn {
    color: #325343;
    background-color: #A6DEA0;
    border: 0px;
}

/* --- Featured On Section --- */

.featured-on {
    background-color: #fffcf6;
}
.featured-on .company-logo {
    max-height: 60px;
    /* Control logo height */
    width: auto;
}

/* --- What is Zenchat Section --- */
.what-is-zenchat {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.faq-section .container {
    max-width: 1000px;
}

.what-is-zenchat .container {
    max-width: 1300px;
}

.what-is-zenchat h2, .faq-section h2 {
    color: #212529;
    font-size: 45px;
    line-height: 1.3em;
}

.what-is-zenchat-image img {
    width: 94%;
    max-width: 400px;
}

.what-is-zenchat .bi-check-circle-fill {
    vertical-align: middle;
    /* Align icon better with text */
}

/* --- FAQ Section --- */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f7f0e7;
}

.faq-section .accordion-button {
    font-weight: 500;
    color: #333;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color:white;
    color: inherit;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    /* Focus ring */
}

.faq-section .accordion-body {
    color: #555;
    font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
    background-color: #212529;
    /* Dark footer background */
}

.footer h5 {
    color: #f8f9fa;
    /* Lighter headings in footer */
    margin-bottom: 1rem;
}

.footer p,
.footer .small {
    color: rgba(255, 255, 255, 0.7);
    /* Muted text color */
}

.footer .footer-links li {
    margin-bottom: 0.5rem;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    /* Muted link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: #ffffff;
    /* White on hover */
    text-decoration: underline;
}

.footer .navbar-brand {
    color: #fff !important;
    /* Ensure footer brand is white */
}

/* --- General &amp; Utility --- */
section {
    scroll-margin-top: 70px;
    /* Adjust based on navbar height for anchor links */
}

/* Add some subtle transitions to buttons */
.btn {
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
}

.btn:hover {
    background-color: #146c43;
    color: white;
}

.dropdown-menu[data-bs-popper] {
    margin-top: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top: 0px;
}

.hero-image-container {
    text-align: center;
}

.value-proposition-list {
    display: inline-flex !important;
    gap: 30px;
}

.cta-icon {
    margin-right: 10px;
}

.what-is-zenchat, .faq-section, footer{
    padding-bottom: 5rem !important;
    padding-bottom: 5rem !important;
}

.what-is-zenchat {
    background-color: #f5f7f5;
}

/* Types of Therapy Template */

.types-of-therapy .hero-section h1 {
    max-width: none;
}

.types-of-therapy .hero-section,
.blog-list .hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.types-of-therapy-main-content li {
    font-size: 1.05rem;
    font-weight: 300;
}

.types-of-therapy-main-content h3 {
    font-size: 1.25rem;
}

.blog-list .container,
.types-of-therapy .container {
    max-width: 1000px;
}

/* Blog Page */

.blog-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.blog-post-title-link {
    color: #212529;
    transition: color 0.2s ease;
}

.blog-post-title-link:hover {
    color: #146c43;
    text-decoration: none;
}

.blog-excerpt {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-link.btn-outline-primary {
    color: #325343;
    border-color: #A6DEA0;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-link.btn-outline-primary:hover {
    background-color: #A6DEA0;
    color: #325343;
    border-color: #A6DEA0;
}

.read-more-link .bi {
    vertical-align: text-bottom;
    margin-left: 0.25rem;
}

.pagination .page-link {
    color: #325343;
    border-color: #dee2e6;
}

.pagination .page-link:hover {
    color: #146c43;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #A6DEA0;
    border-color: #A6DEA0;
    color: #325343;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}

.blog-post-image {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

/* Blog Post Template */

/* --- Blog Post Page Styles --- */

.blog-post-content {
    background-color: #f7f0e7;
    /* Match hero/blog list background */
}

/* Style the main article container */
.blog-article {
    /* Use the 'lead' style from privacy policy for readability */
    font-size: 1.1rem;
    /* Slightly smaller than .lead for balance */
    line-height: 1.7;
    color: #333;
    /* Ensure good contrast */
}

.blog-article p,
.blog-article li {
    /* Apply consistent styling */
    margin-bottom: 1.25rem;
}

.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4 {
    color: #212529;
    /* Darker heading color */
}

.blog-article h2 {
    font-size: 1.75rem;
    /* Adjust heading sizes for article context */
    /* fw-bold and mt-5 mb-3 applied in HTML */
}

.blog-article h3 {
    font-size: 1.4rem;
    /* fw-bold and mt-4 mb-3 applied in HTML */
}

/* Style links within the article body */
.blog-article a {
    color: #146c43;
    /* Use the primary hover/accent color for links */
    text-decoration: underline;
    text-decoration-color: #A6DEA0;
    /* Subtle underline color */
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.blog-article a:hover {
    color: #325343;
    /* Darken link on hover */
    text-decoration-color: #325343;
}

/* Featured image specific styling */
.blog-featured-image {
    max-height: 450px;
    /* Optional: Limit max height */
    width: 100%;
    /* Ensure it spans the column width */
    object-fit: cover;
    /* Cover the area nicely */
    border-radius: 0.375rem;
    /* Add rounding */
}

/* Styling for lists within the article */
.blog-article ul.list-styled {
    /* If you use a specific class for styled lists */
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
}

.blog-article ul:not(.list-styled) {
    padding-left: 2rem;
    /* Standard indentation for bulleted lists */
}

.blog-article ul:not(.list-styled) li::marker {
    color: #A6DEA0;
    /* Use accent color for bullets */
    font-size: 1.1em;
}


/* Breadcrumb styling */
.breadcrumb {
    font-size: 0.9rem;
    background-color: transparent;
    /* Remove default background */
    padding: 0;
}

.breadcrumb-item a {
    color: #325343;
    text-decoration: none;
}

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

.breadcrumb-item.active {
    color: #6c757d;
    /* Standard muted color */
}



@media screen and (max-width: 768px) {

    .blog-post-card .card-title {
        font-size: 1.15rem;
        /* Slightly smaller titles on mobile */
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .hero-image {
        height: inherit;
        max-height: inherit;
        width: 80%;
    }

    .hero-section h1 {
        font-size: 42px;
        margin-top: 40px;
    }

    .what-is-zenchat h2 {
        font-size: 30px;
    }
    
    .hero-section p, .faq-section p, .what-is-zenchat p {
        font-size: 16px;
        margin-top: 20px;
    }

    .types-of-therapy .hero-section p {
        font-size: 1.25rem;
    }

    .value-proposition-list {
        flex-direction: column !important;
        gap: 10px;
    }

    .featured-on .row {
        gap: 20px;
    }

    .faq-section h3 {
        line-height: 1.4em;
    }

    .what-is-zenchat {
        text-align: center;
    }

    .what-is-zenchat-image {
        order: 1;
        margin-bottom: 60px;
    }

    .what-is-zenchat-text {
        order: 2
    }
}

@media screen and (min-width: 769px) {
    .homepage .hero-section h1 {
        font-size: 72px;
        max-width: 450px;
    }
    
    .types-of-therapy .hero-section h1 {
        max-width: none;
        font-size: 48px;
    }
}</pre></body></html>