  /* CSS Variables for Colors - Consistent with main site */
        :root {
             --primary-brown: #eb8030; /* Main coffee brown from image */
            --dark-brown: #e06f1b;    /* Darker brown for hover states */
            --light-bg: #FDFBF8;      /* Very light, almost off-white background */
            --white: #fff;
            --black: #212121;
            --dark-text: #333333;
            --medium-text: #555555;
            --light-text: #AAAAAA;
            --navbar-bg: #FFFFFF;
            --shadow-color: rgba(0, 0, 0, 0.08);
            --darker-shadow-color: rgba(0, 0, 0, 0.12);
        }

        /* General Body Styling */
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Navbar Styling (Consistent with main site) */
        .navbar {
            background-color: var(--navbar-bg);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border-radius: 0 0 12px 12px;
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 45px;
            border-radius: 6px;
        }

        .nav-link {
            color: var(--medium-text) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease, transform 0.2s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-brown) !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            font-weight: 600;
            color: var(--primary-brown) !important;
        }

        /* Section Padding & Title (Consistent with main site) */
        .section-padding {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-text);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-brown);
            border-radius: 2px;
        }

        /* Single Blog Post Specific Styling */
        .blog-post-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .blog-post-header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-text);
        }

        .blog-post-header .meta-info {
            font-size: 1rem;
            color: var(--medium-text);
        }

        .blog-post-image {
            width: 100%;
            height: 500px; /* Larger image for single post */
            object-fit: cover;
            border-radius: 18px;
            box-shadow: 0 8px 25px var(--shadow-color);
            margin-bottom: 50px;
        }

        .blog-content {
            font-size: 1.1rem;
            color: var(--medium-text);
        }

        .blog-content h2, .blog-content h3 {
            color: var(--dark-text);
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .blog-content p {
            margin-bottom: 1.5rem;
        }

        .blog-content ul {
            list-style: disc;
            padding-left: 25px;
            margin-bottom: 1.5rem;
        }

        .blog-content ol {
            list-style: decimal;
            padding-left: 25px;
            margin-bottom: 1.5rem;
        }

        .blog-content li {
            margin-bottom: 0.5rem;
        }

        .blog-content blockquote {
            border-left: 4px solid var(--primary-brown);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #777;
        }

        .back-to-blog {
            display: inline-block;
            margin-top: 50px;
            color: var(--primary-brown);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .back-to-blog:hover {
            color: var(--dark-brown);
            text-decoration: underline;
        }

        /* Sidebar Styling */
        .sidebar {
            background-color: var(--white);
            border-radius: 18px;
            box-shadow: 0 6px 20px var(--shadow-color);
            padding: 30px;
            margin-top: 50px;
        }

        .sidebar h4 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .sidebar h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-brown);
            border-radius: 2px;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
        }

        .sidebar ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .sidebar ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar ul li img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .sidebar ul li a {
            color: var(--medium-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            flex-grow: 1;
        }

        .sidebar ul li a:hover {
            color: var(--primary-brown);
            text-decoration: underline;
        }

        /* Footer (Consistent with main site) */
        .footer {
            background-color: var(--black);
            color: var(--light-text);
            padding: 70px 0 30px;
            font-size: 0.95rem;
            border-radius: 25px 25px 0 0;
            box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.25);
        }

        .footer h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 3px;
            background-color: var(--primary-brown);
            border-radius: 2px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--primary-brown);
        }

        .footer .social-icons a {
            color: var(--light-text);
            font-size: 1.3rem;
            margin-right: 18px;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .footer .social-icons a:hover {
            color: var(--primary-brown);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #3a3a3a;
            padding-top: 25px;
            margin-top: 50px;
            text-align: center;
            color: #888;
        }

        /* New Professional Section Styling */
        .professional-section {
            padding: 50px 0;
            background-color: var(--white);
            margin-top: 50px;
            border-radius: 18px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }
        
        .blog-post-card-mini {
            background-color: var(--light-bg);
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .blog-post-card-mini:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }

        .blog-post-card-mini img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        .blog-post-card-mini .card-body {
            padding: 20px;
        }

        .blog-post-card-mini .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 5px;
        }

        .blog-post-card-mini .blog-meta {
            font-size: 0.8rem;
            color: #888;
        }

        .blog-post-card-mini .read-more {
            display: inline-block;
            margin-top: 15px;
            color: var(--primary-brown);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .blog-post-card-mini .read-more:hover {
            color: var(--dark-brown);
            text-decoration: underline;
        }

        .accordion-button {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-text);
            background-color: var(--white);
            border-radius: 12px;
            padding: 15px 20px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            color: var(--white);
            background-color: var(--primary-brown);
            border-color: var(--primary-brown);
            box-shadow: none;
        }
        
        .accordion-body {
            background-color: #f7f7f7;
            border-radius: 0 0 12px 12px;
            padding: 20px;
            font-size: 1rem;
            color: var(--medium-text);
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .blog-post-header h1 {
                font-size: 2.8rem;
            }
            .blog-post-image {
                height: 400px;
            }
            .sidebar {
                margin-top: 30px;
            }
        }
        @media (max-width: 767.98px) {
            .blog-post-header h1 {
                font-size: 2.2rem;
            }
            .blog-post-image {
                height: 300px;
            }
            .blog-content {
                font-size: 1rem;
            }
            .blog-content h2, .blog-content h3 {
                font-size: 1.8rem;
            }
            .sidebar {
                margin-top: 30px;
            }
        }
        @media (max-width: 575.98px) {
            .blog-post-header h1 {
                font-size: 1.8rem;
            }
            .blog-post-image {
                height: 250px;
            }
            .blog-content {
                font-size: 0.95rem;
            }
        }
        
        /* Revised Professional Sections Styling */
        .professional-card {
            background-color: var(--white);
            border-radius: 18px;
            box-shadow: 0 6px 20px var(--shadow-color);
            padding: 35px;
            margin-top: 30px;
        }

        .professional-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 25px;
            position: relative;
            padding-left: 40px;
        }

        .professional-card h3 i {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-brown);
            font-size: 1.5rem;
        }
        
        .professional-card h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 60px;
            height: 3px;
            background-color: var(--primary-brown);
            border-radius: 2px;
        }

        /* Testimonial Styling */
        .testimonial-item {
            border-left: 4px solid var(--primary-brown);
            padding: 20px;
            background-color: var(--light-bg);
            border-radius: 0 12px 12px 0;
            margin-bottom: 20px;
        }
        
        .testimonial-item p {
            font-style: italic;
            margin-bottom: 5px;
        }

        .testimonial-item cite {
            display: block;
            font-size: 0.9rem;
            font-style: normal;
            color: #888;
        }
        
        /* Order List Styling */
        .order-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .order-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .order-list li i {
            color: var(--primary-brown);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .order-list li a {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .order-list li a:hover {
            color: var(--primary-brown);
        }

        /* FAQ Styling */
        .faq-accordion .accordion-button {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-text);
            background-color: var(--white);
            border-radius: 12px;
            padding: 15px 20px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--white);
            background-color: var(--primary-brown);
            border-color: var(--primary-brown);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-body {
            background-color: #f7f7f7;
            border-radius: 0 0 12px 12px;
            padding: 20px;
            font-size: 1rem;
            color: var(--medium-text);
        }