li {
    margin-bottom: 0px;
    line-height: 1;
}
/*
=================================
BHE Homepage Highlights Bar Styling
=================================
*/
.bhe-highlights-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem; /* Vertical and horizontal gap */
    margin: 1.5rem 0 2rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #f0f0f0;
}
@media (min-width: 768px) {
    .bhe-highlights-bar {
        font-size: 1.1rem;
    }
}
.bhe-highlights-bar span {
    display: flex;
    align-items: center;
}
.bhe-highlights-bar i {
    color: #F7E804; /* Your accent yellow */
    margin-right: 0.5rem;
    font-size: 1.2em;
}
<!-- ================================= 
     CSS FOR THIS CATEGORY PAGE
================================== -->

    .category-header-custom { background-color: #1F1D01; color: #FFFFFF; padding: 3rem 1rem; text-align: center; margin-bottom: 3rem; }
    .category-header-custom h1 { font-size: 2.5rem; font-weight: 800; color: #F7E804; margin-bottom: 0.5rem; }
    .category-header-custom p { font-size: 1.125rem; color: #E9E8E8; margin-top: 0.5rem; margin-bottom: 0; max-width: 600px; margin-left: auto; margin-right: auto; }
    .bhe-principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; margin-bottom: 2rem; }
    .bhe-principle-card { background-color: #f8f9fa; padding: 1.5rem; border-radius: 8px; text-align: center; border-left: 4px solid #E9E8E8; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease; }
    .bhe-principle-card:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-left-color: #F7E804; }
    .bhe-principle-card .icon-container i { font-size: 2.5rem; color: #7A7202; transition: transform 0.3s ease, color 0.3s ease; }
    .bhe-principle-card:hover .icon-container i { color: #F7E804; transform: scale(1.15) rotate(-5deg); }
    .bhe-principle-card h3 { color: #1F1D01; font-size: 1.2rem; margin: 1rem 0 0.75rem 0; }
    .bhe-principle-card p { font-size: 0.95rem; line-height: 1.6; color: #212529; margin-bottom: 0; }

/*
=================================
BHE Detailed Services Grid Styling
=================================
*/

.bhe-detailed-services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
    margin-top: 3rem;
}

/* Use 3 columns on larger screens */
@media (min-width: 992px) {
    .bhe-detailed-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bhe-service-category-card {
    background-color: #f8f9fa; /* Very light gray */
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #F7E804; /* Accent color */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bhe-service-category-card h3 {
    font-size: 1.5rem;
    color: #1F1D01;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.bhe-service-category-card h3 i {
    margin-right: 1rem;
    color: #F7E804;
}

.bhe-service-category-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bhe-service-category-card ul li {
    margin-bottom: 0.75rem;
}

.bhe-service-category-card ul li a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bhe-service-category-card ul li a::before {
    content: '\f105'; /* Font Awesome chevron-right icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #7A7202; /* Muted gold */
    margin-right: 0.75rem;
    transition: color 0.2s ease;
}

.bhe-service-category-card ul li a:hover {
    color: #1F1D01;
    transform: translateX(5px);
}

.bhe-service-category-card ul li a:hover::before {
    color: #F7E804;
}
=================================
BHE Homepage Service Card Lists
=================================
*/

.service-card ul {
    list-style: none; /* Removes default bullets */
    padding-left: 0;
    margin: 1rem 0 0 0;
    text-align: left; /* Aligns text to the left for readability */
}

.service-card ul li {
    font-size: 0.9rem;
    color: #E9E8E8; /* Light text to contrast with dark card */
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

/* Adds a checkmark icon before each list item */
.service-card ul li::before {
    content: '\f00c'; /* Font Awesome checkmark icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; /* Use the solid icon style */
    color: #F7E804; /* Your accent yellow */
    margin-right: 0.75rem;
    margin-top: 0.15rem; /* Aligns icon nicely with the text */
}
/*
=================================
BHE Calculation Steps Styling
=================================
*/

.bhe-calculation-steps {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1rem;
    margin: 1.5rem 0;
}

/* On wider screens, show side-by-side */
@media (min-width: 600px) {
    .bhe-calculation-steps {
        grid-template-columns: 1fr 1fr;
    }
}

.bhe-calc-step {
    background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent white to stand out from the red box */
    border: 1px solid #f5c6cb; /* Light red border */
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bhe-calc-step:hover {
    transform: scale(1.02);
    border-color: #dc3545; /* Darker red on hover */
}

.bhe-calc-step i {
    font-size: 1.5rem;
    color: #721c24; /* Dark red icon color */
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.bhe-calc-step .calc-text strong {
    display: block;
    font-size: 1rem;
    color: #721c24;
    margin-bottom: 0.25rem;
}

.bhe-calc-step .calc-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #721c24;
}
/*
=================================
BHE Blog Series - Master Stylesheet
=================================
*/

/* --- Series Navigation Box --- */
.series-navigation { 
    border: 1px solid #E9E8E8; 
    border-top: 5px solid #F7E804; 
    padding: 2rem; 
    border-radius: 8px; 
    background-color: #fff; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.07); 
}
.series-title { 
    text-align: center; 
    margin-bottom: 1.5rem; 
    color: #1F1D01; 
}
.series-list { 
    list-style: none; 
    padding-left: 0; 
    margin: 0; 
}
.series-list li, .series-list li a { 
    padding: 0.6rem 0; 
    border-bottom: 1px dashed #E9E8E8; 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    color: #7A7202; 
    font-weight: 500; 
    transition: color 0.2s ease; 
}
.series-list li a:hover { 
    color: #1F1D01; 
}
.series-list li:last-child { 
    border-bottom: none; 
}
.series-list i { 
    margin-right: 1rem; 
    color: #7A7202; 
    width: 20px; 
    text-align: center; 
}
.series-list .current-item { 
    font-weight: 700; 
    color: #1F1D01; 
}
.series-list .current-item i { 
    color: #F7E804; 
}

/* --- Series Credit Blurb --- */
.series-credit { 
    margin-top: 1.5rem; 
    padding-top: 1.5rem; 
    border-top: 2px solid #E9E8E8; 
    text-align: center; 
}
.credit-text { 
    font-size: 0.9rem; 
    color: #555; 
    line-height: 1.6; 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: flex-start; 
    text-align: left; 
}
.credit-text i { 
    margin-right: 0.75rem; 
    color: #7A7202; 
    font-size: 1.2rem; 
    margin-top: 0.2rem; 
}
.credit-cta { 
    display: inline-block; 
    background-color: #f0f0f0; 
    color: #1F1D01; 
    font-weight: 600; 
    padding: 0.6rem 1.2rem; 
    border-radius: 6px; 
    font-size: 0.9rem; 
    text-decoration: none; 
    border: 1px solid #ddd; 
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; 
}
.credit-cta:hover { 
    background-color: #e9e8e8; 
    border-color: #ccc; 
    transform: translateY(-2px); 
    color: #1F1D01; 
    text-decoration: none; 
}
/*
==================================================
CSS OVERRIDE FOR THE "BIG FIVE" GRID
==================================================
*/

/* Target our custom card class to change its appearance */
.bhe-big-five-item {
    background-color: #1F1D01 !important; /* Set the dark background */
    border-left: 4px solid #F7E804 !important; /* Add the yellow accent border */
    display: flex; /* Use flexbox for better alignment */
    flex-direction: column;
    justify-content: center;
    min-height: 160px; /* Ensures a consistent minimum height */
}

/* Style the h3 text inside our custom card */
.bhe-big-five-item h3 {
    color: #FFFFFF !important;
    font-size: 1.1rem !important;
}

/* Remove the default icon */
.bhe-big-five-item .icon-container i {
    display: none !important;
}

/* Style the new number span to look like your original design */
.bhe-big-five-item .icon-container span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: #F7E804 !important;
    color: #1F1D01 !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    font-weight: 700 !important;
    font-size: 1rem;
    line-height: 1;
}

/* Override the hover effect */
.bhe-big-five-item:hover {
    background-color: #3a3830 !important;
    transform: translateY(-6px) scale(1.02); /* A slightly different effect to confirm it's working */
}

/* Ensure our number doesn't do the default hover effect */
.bhe-big-five-item:hover .icon-container span {
    transform: none !important;
    color: #1F1D01 !important;
}
/* --- All Other Card & Grid Styles --- */
.bhe-principles-grid, .bhe-readiness-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.bhe-principle-card { background-color: #f8f9fa; padding: 1.5rem; border-radius: 8px; text-align: center; border-left: 4px solid #E9E8E8; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease; }
.bhe-principle-card:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-left-color: #F7E804; }
.bhe-principle-card .icon-container { margin-bottom: 1rem; }
.bhe-principle-card .icon-container i { font-size: 2.5rem; color: #7A7202; transition: transform 0.3s ease, color 0.3s ease; }
.bhe-principle-card:hover .icon-container i { color: #F7E804; transform: scale(1.15) rotate(-5deg); }
.bhe-principle-card h3 { color: #1F1D01; font-size: 1.2rem; margin-bottom: 0.75rem; }
.bhe-principle-card p { font-size: 0.95rem; line-height: 1.6; color: #212529; margin-bottom: 0; }
.bhe-readiness-card { background-color: #FFFFFF; padding: 1.5rem; border-radius: 8px; text-align: center; border-bottom: 4px solid #F7E804; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bhe-readiness-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
.bhe-readiness-card .icon-container { margin-bottom: 1rem; }
.bhe-readiness-card .icon-container i { font-size: 2.5rem; color: #1F1D01; transition: transform 0.3s ease; }
.bhe-readiness-card:hover .icon-container i { transform: scale(1.1); }
.bhe-readiness-card h3 { color: #1F1D01; font-size: 1.2rem; margin-bottom: 0.75rem; }
.bhe-readiness-card p { font-size: 0.95rem; line-height: 1.6; color: #212529; margin-bottom: 0; }
.bhe-optimization-section { margin: 2em 0; }
.bhe-optimization-card { background-color: #f8f9fa; border: 1px solid #E9E8E8; border-left: 4px solid #7A7202; padding: 1.5em; margin-bottom: 1.5em; border-radius: 0.3rem; box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: box-shadow 0.3s ease, border-left-color 0.3s ease; }
.bhe-optimization-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-left-color: #F7E804; }
.bhe-optimization-card h4 { color: #1F1D01; margin-top: 0; margin-bottom: 0.75em; font-family: 'Open Sans', sans-serif; font-size: 1.15em; display: flex; align-items: center; }
.bhe-optimization-card h4 i { margin-right: 0.75em; color: #7A7202; font-size: 1.1em; transition: color 0.3s ease, transform 0.3s ease; }
.bhe-optimization-card:hover h4 i { color: #F7E804; transform: rotate(-5deg); }
.bhe-optimization-card p { font-size: 0.95rem; color: #212529; margin-bottom: 0; }
.bhe-mindset-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) { .bhe-mindset-grid { grid-template-columns: 1fr 1fr; } }
.bhe-mindset-card { background-color: #f8f9fa; padding: 1.5rem; border-radius: 8px; border-top: 4px solid #F7E804; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; }
.bhe-mindset-grid:hover .bhe-mindset-card { transform: scale(0.98); opacity: 0.7; }
.bhe-mindset-card:hover { transform: scale(1.02) !important; opacity: 1 !important; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.bhe-mindset-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; display: flex; align-items: center; }
.bhe-mindset-card .icon-container { margin-bottom: 1rem; }
.bhe-mindset-card .icon-container i { font-size: 2.5rem; color: #F7E804; }
.bhe-mindset-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
.bhe-highlight-box { display: flex; align-items: center; background-color: #f8f9fa; padding: 1.5rem; border-radius: 8px; border-left: 5px solid #F7E804; margin: 2rem 0; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.bhe-highlight-box .icon-container { margin-right: 1.5rem; }
.bhe-highlight-box .icon-container i { font-size: 2.5rem; color: #F7E804; }
.bhe-highlight-box .text-content h3 { font-size: 1.2rem; margin-bottom: 0.25rem; color: #1F1D01; }
.bhe-highlight-box .text-content p { font-size: 0.95rem; color: #212529; margin-bottom: 0; }
.bhe-warning-box { background-color: #fff5f5; border: 1px solid #f5c6cb; border-left: 5px solid #dc3545; padding: 1.5em; margin: 2em 0; border-radius: 0.3rem; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.bhe-warning-box.interactive { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bhe-warning-box.interactive:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2); }
.bhe-warning-box h4 { color: #721c24; margin-top: 0; margin-bottom: 0.75em; font-family: 'Open Sans', sans-serif; font-size: 1.15em; display: flex; align-items: center; }
.bhe-warning-box h4 i { margin-right: 0.75em; color: #dc3545; font-size: 1.1em; }
.bhe-warning-box.interactive h4 i { transition: transform 0.3s ease; }
.bhe-warning-box.interactive:hover h4 i { transform: rotate(15deg) scale(1.2); }
.bhe-warning-box p { font-size: 0.95rem; color: #721c24; margin-bottom: 0; }
/*
=================================
Styling for Clickable Service Area Links
=================================
*/
.service-area-list li a {
    display: flex; /* Aligns icon and text properly */
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit; /* Inherits the default text color from the list item */
}

/* Ensure hover color change happens on the link */
.service-area-list li:hover a {
    color: inherit; /* Prevents link from changing to a different color on hover */
}
/*
=================================
BHE Service Area Section Styling
=================================
*/

/* Grid Layout for the two columns */
.bhe-service-area-grid {
    display: grid;
    gap: 2rem 3rem; /* Vertical and horizontal gap */
}

/* On screens wider than 768px, use a two-column layout */
@media (min-width: 768px) {
    .bhe-service-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Styling for the column headings (e.g., "Major Cities We Serve") */
.bhe-service-column h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F7E804; /* Accent color border */
}

/* Reset default list styles */
.service-area-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/*
---------------------------------
Microinteractions for List Items
---------------------------------
*/

/* Base style for each location item */
.service-area-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    margin-bottom: 0.25rem;
    cursor: default;
    /* Smooth transition for hover effects */
    transition: transform 0.2s ease-out, background-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Base style for the map marker icon */
.service-area-list li i {
    color: #7A7202; /* Muted gold from your theme */
    margin-right: 0.75rem;
    font-size: 1.1em;
    /* Smooth transition for hover effects on the icon */
    transition: transform 0.2s ease-out, color 0.2s ease-out;
}

/* --- The HOVER Effect --- */

/* 1. Animate the entire list item on hover */
.service-area-list li:hover {
    transform: translateX(10px); /* Pushes the item to the right */
    background-color: #f8f9fa; /* Light background highlight */
    box-shadow: 0 2px 5px rgba(0,0,0,0.08); /* Adds a subtle shadow */
}

/* 2. Animate the icon within the list item on hover */
.service-area-list li:hover i {
    color: #F7E804; /* Brightens to your main accent color */
    transform: scale(1.2); /* Makes the icon slightly larger */
}
#footer > div > div.footer-columns-three-equal > div.footer-column-two-three-equal > div:nth-child(1) > h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.menu-desktop > .main-menu a {
    padding-left: 15px;
}

#footer .widget-wrapper ul:not(.contact-info-list):not(.wp-block-social-links) {
    list-style-type: none;
    margin-left: 0px;
}

#footer .widget-wrapper .widget-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.3;
}

#footer h5.wp-block-heading,
#footer .widget-footer-two h5.mb-3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.3;
}

#footer .widget-footer-one ul li a {
    font-family: 'Noto Sans', sans-serif;
    color: #F7E804;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.75;
    padding: 0.25rem 0;
    display: block;
    font-weight: normal;
}

#footer .widget-footer-one ul li a:hover {
    color: #F7E804;
    text-decoration: underline;
}

.connect-widget-custom .widget-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.connect-widget-custom .contact-info-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.connect-widget-custom .contact-info-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.connect-widget-custom .contact-info-list li a {
    font-family: 'Noto Sans', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: normal;
    display: inline;
}

.connect-widget-custom .contact-info-list li a:hover {
    color: #F7E804;
    text-decoration: underline;
}

.connect-widget-custom .contact-info-list li i {
    color: #FFFFFF;
    margin-right: 0.75em;
    width: 1.5em;
    text-align: center;
    flex-shrink: 0;
}

.connect-widget-custom .footer-social-icons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.connect-widget-custom .footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.connect-widget-custom .footer-social-icons a i {
    color: #1F1D01;
}

.connect-widget-custom .footer-social-icons a:hover {
    background-color: #F7E804;
    transform: scale(1.1);
}

.connect-widget-custom .footer-social-icons a:hover i {
    color: #1F1D01;
}

@media screen and (min-width: 1200px) {
    .footer-column-one-three-equal {
        width: 16.66666667%;
        margin: 15px;
    }
    .footer-column-two-three-equal {
        width: 41.66666667%;
        margin: 15px;
    }
    .footer-column-three-three-equal {
        width: 33.33333333%;
        margin: 15px;
    }
}

#footer .widget-wrapper p:last-child {
    font-size: 16px;
}

/* General Body & Typography */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #212529;
    background-color: #E9E8E8;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: #1F1D01;
    margin-top: 0;
    margin-bottom: 0.75em;
}

p {
    margin-bottom: 1em;
}

a {
    color: #7A7202;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #F7E804;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-header-custom {
    background-color: #201D1B;
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.page-header-custom h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F7E804;
    margin-bottom: 0.5rem;
}

.page-header-custom p {
    font-size: 1.125rem;
    color: #E9E8E8;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.section-padding {
    padding: 4rem 0;
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-light-gray {
    background-color: #E9E8E8;
}

.bg-very-light-gray {
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.section-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F1D01;
    margin-bottom: 0.75rem;
}

.section-title-container p {
    font-size: 1.125rem;
    color: #212529;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* Story & Commitment Section */
.story-commitment-section .content-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-commitment-section .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-commitment-section .image-container img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.story-commitment-section .text-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 1rem;
}

.story-commitment-section .text-content p {
    color: #212529;
    margin-bottom: 1rem;
}

.story-commitment-section .text-content .license-info {
    font-weight: 600;
    color: #1F1D01;
}

/* Team Section & Cards */
.team-section .team-grid {
    display: grid;
    gap: 2.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .team-section .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .team-section .team-grid {
        gap: 4rem;
    }
}

.team-member-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-member-card img {
    width: 10rem;
    height: 10rem;
    border-radius: 9999px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 4px solid #E9E8E8;
    transition: border-color 0.3s ease; /* SMOOTH BORDER TRANSITION ADDED */
}

.team-member-card:hover img {
    border-color: #F7E804; /* BORDER COLOR CHANGE MICROINTERACTION ADDED */
}

.team-member-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F1D01;
    margin-bottom: 0.25rem;
}

.team-member-card .member-title {
    color: #7A7202;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.team-member-card .member-description {
    color: #212529;
    font-size: 0.875rem;
}

/* Core Values Section */
.core-values-section .values-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .core-values-section .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.core-values-section .value-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-values-section .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.core-values-section .value-item .icon-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.core-values-section .value-item .icon-container i {
    font-size: 3rem;
    color: #F7E804;
    transition: transform 0.3s ease;
}

.core-values-section .value-item:hover .icon-container i {
    transform: scale(1.15) rotate(-5deg);
}

.core-values-section .value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 0.5rem;
}

.core-values-section .value-item p {
    color: #212529;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background-color: #1F1D01;
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

.cta-section p {
    font-size: 1.125rem;
    color: #E9E8E8;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #F7E804;
    color: #1F1D01 !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #e0d104;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px -3px rgba(0,0,0,0.15), 0 4px 8px -2px rgba(0,0,0,0.1);
    text-decoration: none !important;
}

.cta-button-secondary {
    background-color: #201D1B;
    color: #FFFFFF !important;
    border: 2px solid #201D1B;
}

.cta-button-secondary:hover {
    background-color: #3a3633;
    color: #F7E804 !important;
    border-color: #F7E804;
}


/* --- Additional Styles from Second Stylesheet --- */

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-item-card .icon-container {
    margin-bottom: 1rem;
}

.service-item-card .icon-container i {
    font-size: 2.5rem;
    color: #F7E804;
}

.service-item-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 0.5rem;
}

.service-item-card p {
    color: #212529;
    font-size: 0.875rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.pricing-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-card .card-header i {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.pricing-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 0;
}

.pricing-card .price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #F7E804;
    margin-bottom: 0.25rem;
}

.pricing-card .price-amount .price-unit {
    font-size: 1.25rem;
    color: #212529;
    font-weight: 500;
}

.pricing-card .price-description {
    color: #212529;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pricing-card .price-note {
    color: #212529;
    font-size: 0.875rem;
    margin-top: auto;
}

.membership-card {
    background-color: #1F1D01;
    color: #FFFFFF;
    border: 4px solid #F7E804;
}

.membership-card .card-header i {
    color: #F7E804;
}

.membership-card .card-header h3 {
    color: #FFFFFF;
}

.membership-card .price-amount {
    color: #F7E804;
}

.membership-card .price-amount .price-unit {
    color: #E9E8E8;
}

.membership-card .price-description,
.membership-card .price-note,
.membership-card ul li {
    color: #E9E8E8;
}

.membership-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.membership-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.membership-card ul li i {
    color: #F7E804;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125em;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-grid .membership-card-container {
        grid-column: span 2 / span 2;
    }
}

.project-costs-info {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    text-align: center;
}

.project-costs-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 1rem;
}

.project-costs-info p {
    color: #212529;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.project-costs-grid {
    display: grid;
    gap: 0.5rem 2rem;
    color: #212529;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .project-costs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-costs-grid strong {
    font-weight: 700;
    color: #1F1D01;
}

.project-costs-info .font-semibold {
    font-weight: 600;
}

.project-costs-info .text-xs {
    font-size: 0.75rem;
}

.mt-12-custom {
    margin-top: 3rem;
}

.cta-button-custom {
    background-color: #F7E804;
    color: #1F1D01;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.cta-button-custom:hover {
    background-color: #e0d104;
    transform: translateY(-2px);
    text-decoration: none;
}

.membership-card .cta-button-custom {
    color: #1F1D01 !important;
}

.membership-card .cta-button-custom:hover {
    background-color: #e0d104;
    color: #1F1D01 !important;
}

.referral-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .referral-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.referral-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referral-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.08);
}

.referral-card i {
    font-size: 1.875rem;
    color: #F7E804;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.referral-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 0.5rem;
}

.referral-card p {
    color: #212529;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.referral-card p strong {
    color: #F7E804;
    font-weight: 700;
}

.credits-info {
    margin-top: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
}

.credits-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 0.5rem;
}

.credits-info p {
    color: #212529;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.credits-info p:last-child {
    margin-bottom: 0;
}

.credits-info p strong {
    color: #1F1D01;
    font-weight: 700;
}

.credits-info .text-xs {
    font-size: 0.75rem;
    margin-top: 0.75rem;
}

.hero-section {
    background-image: linear-gradient(rgba(20, 20, 20, 0.65), rgba(20, 20, 20, 0.65)), url('https://cdn.bhelectric.ltd/wp-content/uploads/2025/06/cropped-2021-08-04_resized.webp');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 0;
    }
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #F7E804;
}

@media (min-width: 640px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.75rem;
    }
}

.hero-section .subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #E9E8E8;
}

@media (min-width: 640px) {
    .hero-section .subtitle {
        font-size: 1.5rem;
    }
}

.hero-section .description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

@media (min-width: 640px) {
    .hero-section .description {
        font-size: 1.25rem;
    }
}

.hero-section .cta-buttons .cta-button {
    margin: 0.5rem;
}

@media (min-width: 640px) {
    .hero-section .cta-buttons .cta-button {
        margin: 0 0.5rem;
    }
}

.why-choose-section .features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.feature-card .feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-card .feature-header i {
    font-size: 1.875rem;
    color: #F7E804;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-card .feature-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F1D01;
    margin-bottom: 0;
}

.feature-card p {
    color: #212529;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.why-choose-section .closing-remark {
    margin-top: 3rem;
    text-align: center;
}

.why-choose-section .closing-remark p {
    color: #212529;
    font-size: 1.125rem;
}

.comprehensive-services-section .service-card {
    background-color: #2c2a1a;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.comprehensive-services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(247, 232, 4, 0.25);
    background-color: #3a3830;
}

.comprehensive-services-section .service-card .icon-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.comprehensive-services-section .service-card .icon-container i {
    font-size: 2.5rem;
    color: #F7E804;
}

.comprehensive-services-section .service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.comprehensive-services-section .service-card p {
    color: #E9E8E8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.comprehensive-services-section .additional-info {
    margin-top: 3.5rem;
    text-align: center;
}

.comprehensive-services-section .additional-info p {
    color: #212529;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.service-area-section .map-container {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
}

.service-area-section .service-area-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    color: #212529;
}

@media (min-width: 640px) {
    .service-area-section .service-area-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .service-area-section .service-area-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-area-section .service-area-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.service-area-section .service-area-list i {
    color: #F7E804;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.service-area-section .contact-prompt {
    text-align: center;
    color: #212529;
    margin-top: 1.5rem;
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* General Animation Styles */
.bhe-blog-content .bhe-animated-header,
.bhe-blog-content .bhe-animated-table-wrapper,
.bhe-blog-content .bhe-animated-rebate-highlights,
.bhe-blog-content .bhe-animated-accordion-wrapper,
.bhe-blog-content .bhe-animated-card,
.bhe-blog-content .bhe-animated-img-wrapper {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bhe-blog-content .bhe-animated-header.bhe-in-view,
.bhe-blog-content .bhe-animated-table-wrapper.bhe-in-view,
.bhe-blog-content .bhe-animated-rebate-highlights.bhe-in-view,
.bhe-blog-content .bhe-animated-accordion-wrapper.bhe-in-view,
.bhe-blog-content .bhe-animated-card.bhe-in-view,
.bhe-blog-content .bhe-animated-img-wrapper.bhe-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Pulsing CTA Button Animation */
@keyframes bhe-pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(247, 232, 4, 0.7); } /* #F7E804 */
    70% { box-shadow: 0 0 0 12px rgba(247, 232, 4, 0); }
    100% { box-shadow: 0 0 0 0px rgba(247, 232, 4, 0); }
}

.bhe-pulse-cta {
    background-color: #F7E804; color: #1F1D01 !important; font-weight: 700;
    padding: 1rem 2.5rem; border-radius: 0.5rem; font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    display: inline-block; text-align: center; text-decoration: none !important;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: bhe-pulse-animation 2.2s infinite;
}
.bhe-pulse-cta:hover {
    background-color: #e0d104; transform: translateY(-3px);
    box-shadow: 0 6px 12px -3px rgba(0,0,0,0.15), 0 4px 8px -2px rgba(0,0,0,0.1);
    animation-play-state: paused;  
}

/* Standard Table Styling */
.bhe-blog-content .bhe-table-responsive-wrapper {
    overflow-x: auto; margin-top: 1em; margin-bottom: 1.5em;  
    -webkit-overflow-scrolling: touch; border: 1px solid #E9E8E8;  
    border-radius: 0.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08);  
}
.bhe-blog-content table.wp-block-table {
    width: 100%; border-collapse: collapse; font-size: 0.9rem; border: none;  
}
.bhe-blog-content table.wp-block-table th,
.bhe-blog-content table.wp-block-table td {
    padding: 0.85em 1.1em; text-align: left; border-bottom: 1px solid #E9E8E8;  
    border-left: none; border-right: none;
}
.bhe-blog-content table.wp-block-table td:first-child,
.bhe-blog-content table.wp-block-table th:first-child { padding-left: 1.2em; }
.bhe-blog-content table.wp-block-table td:last-child,
.bhe-blog-content table.wp-block-table th:last-child { padding-right: 1.2em; }
.bhe-blog-content table.wp-block-table thead th {
    background-color: #1F1D01; color: #F7E804; font-weight: 700;  
    font-family: 'Open Sans', sans-serif; border-bottom: 2px solid #F7E804;  
    border-top: none; text-transform: uppercase; letter-spacing: 0.05em;  
}
.bhe-blog-content table.wp-block-table.is-style-stripes tbody tr:nth-child(odd) { background-color: #FFFFFF; }
.bhe-blog-content table.wp-block-table.is-style-stripes tbody tr:nth-child(even) { background-color: #f8f9fa; }
.bhe-blog-content table.wp-block-table tbody tr:hover { background-color: #E9E8E8; }
.bhe-blog-content table.wp-block-table a { color: #7A7202; font-weight: 500; }
.bhe-blog-content table.wp-block-table a:hover { color: #F7E804; text-decoration: underline; }
.bhe-blog-content table.wp-block-table tbody tr:last-child td { border-bottom: none; }

/* Rebate Highlights Box Styling */
.bhe-blog-content .bhe-rebate-highlights {
    background-color: #f8f9fa; border-left: 5px solid #F7E804;  
    padding: 1.5em 2em; margin: 2em 0; border-radius: 0.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bhe-blog-content .bhe-rebate-highlights h4 {
    color: #1F1D01; margin-top: 0; margin-bottom: 0.5em;
    font-size: 1.2em; font-family: 'Open Sans', sans-serif;
}
.bhe-blog-content .bhe-rebate-highlights p { margin-bottom: 0.5em; color: #212529; font-size: 1em; }
.bhe-blog-content .bhe-rebate-highlights p:last-child { margin-bottom: 0; }

/* Accordion Styling */
.bhe-blog-content .bhe-rebate-accordion {
    margin-top: 1em; margin-bottom: 2em; border-radius: 0.5rem;
    overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.bhe-blog-content .bhe-accordion-item { background-color: #FFFFFF; border-bottom: 1px solid #E9E8E8; }
.bhe-blog-content .bhe-accordion-item:last-child { border-bottom: none; }
.bhe-blog-content .bhe-accordion-button {
    background-color: #1F1D01; color: #F7E804; font-family: 'Open Sans', sans-serif;
    font-weight: 600; padding: 1em 1.5em; width: 100%; text-align: left;
    border: none; outline: none; cursor: pointer; transition: background-color 0.3s ease;
    font-size: 1.1em; display: flex; justify-content: space-between; align-items: center;
}
.bhe-blog-content .bhe-accordion-button:hover,
.bhe-blog-content .bhe-accordion-button.bhe-active { background-color: #3a3633; }
.bhe-blog-content .bhe-accordion-button .bhe-accordion-title-amount {
    display: flex; flex-direction: column; align-items: flex-start; margin-right: 10px;
}
.bhe-blog-content .bhe-accordion-button .bhe-accordion-coop-name { font-size: 1em; }
.bhe-blog-content .bhe-accordion-button .bhe-accordion-rebate-amount-summary {
    font-size: 0.8em; color: #E9E8E8; font-weight: 400; margin-top: 0.2em;
}
.bhe-blog-content .bhe-accordion-icon {
    font-size: 1.2em;  
    color: #F7E804;
    transition: transform 0.3s ease;
    display: inline-block;  
    line-height: 1;  
    width: 20px;  
    text-align: center;
}
.bhe-blog-content .bhe-accordion-button .bhe-accordion-icon::before {
    content: '+';
}
.bhe-blog-content .bhe-accordion-button.bhe-active .bhe-accordion-icon::before {
    content: '−';
}
.bhe-blog-content .bhe-accordion-panel {
    padding: 0 1.5em; background-color: #f8f9fa; max-height: 0;
    overflow: hidden; transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}
   .bhe-blog-content .bhe-accordion-panel.bhe-active { padding: 1.5em; }
.bhe-blog-content .bhe-accordion-panel p { margin-bottom: 0.85em; font-size: 0.9rem; line-height: 1.65; color: #212529; }
.bhe-blog-content .bhe-accordion-panel strong { color: #1F1D01; font-weight: 600; }
.bhe-blog-content .bhe-accordion-panel p:last-child { margin-bottom: 0; }
.bhe-blog-content .bhe-accordion-panel ul { list-style: disc; padding-left: 1.5em; margin-top: 0.5em; margin-bottom: 0.85em; }
.bhe-blog-content .bhe-accordion-panel ul li { margin-bottom: 0.4em; }

/* Enhanced Feature Cards Styling */
.bhe-blog-content .bhe-features-grid,
.bhe-blog-content .bhe-values-grid {
    display: grid;
    gap: 1.5rem;  
    margin-top: 2em;
}
@media (min-width: 500px) {
    .bhe-blog-content .bhe-features-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .bhe-blog-content .bhe-values-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
.bhe-blog-content .bhe-feature-card,
.bhe-blog-content .bhe-value-item-card {
    background-color: #FFFFFF;
    padding: 1.75em;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;  
}
.bhe-blog-content .bhe-feature-card:hover,
.bhe-blog-content .bhe-value-item-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.bhe-blog-content .bhe-feature-card .bhe-feature-header,
.bhe-blog-content .bhe-value-item-card .bhe-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;  
    margin-bottom: 1em;
    color: #F7E804;  
}
.bhe-blog-content .bhe-feature-card .bhe-feature-header i,
.bhe-blog-content .bhe-value-item-card .bhe-icon-container i {
    font-size: 2.5rem;  
    margin-right: 0.5em;  
    transition: transform 0.3s ease, color 0.3s ease;
}
   .bhe-blog-content .bhe-value-item-card .bhe-icon-container i {
      margin-right: 0;  
   }
.bhe-blog-content .bhe-feature-card:hover .bhe-feature-header i,
.bhe-blog-content .bhe-value-item-card:hover .bhe-icon-container i {
    transform: scale(1.1);
    color: #e0d104;  
}
.bhe-blog-content .bhe-feature-card h3,
.bhe-blog-content .bhe-value-item-card h3 {
    font-size: 1.3em;
    color: #1F1D01;
    margin-bottom: 0.5em;
    font-family: 'Open Sans', sans-serif;
}
.bhe-blog-content .bhe-feature-card p,
.bhe-blog-content .bhe-value-item-card p {
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Optimization Section Card Styling */
.bhe-blog-content .bhe-optimization-section {
    margin-top: 2em;
    margin-bottom: 2em;
}
.bhe-blog-content .bhe-optimization-card {
    background-color: #f8f9fa;
    border: 1px solid #E9E8E8;
    border-left: 4px solid #7A7202;
    padding: 1.5em;
    margin-bottom: 1.5em;
    border-radius: 0.3rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.bhe-blog-content .bhe-optimization-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left-color: #F7E804;
}
.bhe-blog-content .bhe-optimization-card h4 {
    color: #1F1D01;
    margin-top: 0;
    margin-bottom: 0.75em;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15em;
    display: flex;
    align-items: center;
}
   .bhe-blog-content .bhe-optimization-card h4 i {
    margin-right: 0.5em;
    color: #7A7202;
    font-size: 1.1em;
    transition: color 0.3s ease;
   }
   .bhe-blog-content .bhe-optimization-card:hover h4 i {
    color: #F7E804;
   }
.bhe-blog-content .bhe-optimization-card p,
.bhe-blog-content .bhe-optimization-card ul {
    font-size: 0.95rem;
    color: #212529;
}
.bhe-blog-content .bhe-optimization-card ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-top: 0.5em;
}
   .bhe-blog-content .bhe-optimization-card ul li {
    margin-bottom: 0.4em;
}

/* Image Wrapper Styling */
.bhe-blog-content .bhe-image-wrapper {
    margin: 2em auto;  
    position: relative;
    overflow: hidden;  
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;  
    max-width: 600px;  
}
.bhe-blog-content .bhe-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-out, filter 0.4s ease-out;
    border-radius: 0.5rem;  
}
.bhe-blog-content .bhe-image-wrapper:hover img {
    transform: scale(1.05);  
    filter: brightness(1.05);  
}
.bhe-blog-content .bhe-image-caption {
    text-align: center;
    font-size: 0.85em;
    color: #555;
    margin-top: 0.5em;
    font-style: italic;
}

/* Hides the default featured image on single blog posts */
.single-post #content-wrapper > div.featured-image-wrapper {
    display: none;
}
.page #content-wrapper  >  div.featured-image-wrapper {
    display: none;
}

#sidebar > div:nth-child(1) > form > div > button
{color: #1F1D01 !important}
.img-zoom-hover {
    transition: transform 0.3s ease;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.img-zoom-hover:hover {
    transform: scale(1.05);
}

.service-area-list li {
    transition: transform 0.3s ease;
}

.service-area-list li:hover {
    transform: translateX(8px);
}

.service-area-list li i {
    transition: transform 0.3s ease;
}

.service-area-list li:hover i {
    transform: scale(1.3);
}
/* Feature and Service Cards Hover Microinteractions */
.feature-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-card .feature-header i,
.service-card .icon-container i {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-header i,
.service-card:hover .icon-container i {
    transform: scale(1.15) rotate(-5deg);
}
/* Smooth hover effect for service and feature cards */
.feature-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
    background-color: #ffffff;
    border-radius: 8px;
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    background-color: #f9f9f9;
    border: 1px solid #FFD700; /* Optional gold highlight */
}

/* Icon interaction */
.feature-card .feature-header i,
.service-card .icon-container i {
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.feature-card:hover .feature-header i,
.service-card:hover .icon-container i {
    transform: scale(1.2) rotate(-5deg);
    color: #FFD700; /* Optional hover color */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}
/* GENERAL ICON MICROINTERACTIONS */
.icon-container i,
.card-header i,
.service-item-card .icon-container i,
.membership-card i,
.service-area-list li i {
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* On hover of their containers */
.service-item-card:hover .icon-container i,
.pricing-card:hover .card-header i,
.membership-card:hover i,
.service-area-list li:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: #FFD700; /* Bright gold */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Optionally: Add subtle lift to the entire card */
.service-item-card,
.pricing-card,
.membership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
}

.service-item-card:hover,
.pricing-card:hover,
.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* ICON MICROINTERACTION */
.pulse-icon {
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.pulse-icon:hover {
  transform: scale(1.2) rotate(-5deg);
  color: #FFD700; /* bright gold */
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* BUTTON PULSING ANIMATION */
.pulse-button {
  animation: pulse 2s infinite;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(122, 114, 2, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(122, 114, 2, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(122, 114, 2, 0);
  }
}
.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.2);
}

.icon-hover-card:hover .pulse-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/*
=================================
BHE Process Timeline Styling
=================================
*/

.bhe-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* The vertical line connecting the steps */
.bhe-process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 36px; /* Aligns with the center of the icon circle */
    width: 3px;
    background-color: #e9e8e8; /* Light gray from your theme */
    border-radius: 2px;
}

.bhe-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 70px; /* Space for the icon */
    display: flex;
    align-items: flex-start;
}

.bhe-timeline-item:last-child {
    margin-bottom: 0;
}

/* The icon circle */
.bhe-timeline-step {
    position: absolute;
    left: 0;
    top: 0;
    width: 72px;
    height: 72px;
    background-color: #FFFFFF;
    border: 3px solid #1F1D01; /* Dark theme color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bhe-timeline-step i {
    font-size: 1.8rem;
    color: #1F1D01; /* Dark theme color */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* The content card */
.bhe-timeline-content {
    background-color: #f8f9fa; /* Very light gray */
    padding: 1.5rem;
    border-radius: 0.5rem;
    flex-grow: 1;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid #E9E8E8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bhe-timeline-content h3 {
    font-size: 1.25rem;
    color: #1F1D01;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.bhe-timeline-content p {
    font-size: 0.95rem;
    color: #212529;
    margin-bottom: 0;
}


/* =================================
Microinteractions on Hover
=================================
*/

.bhe-timeline-item:hover .bhe-timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.bhe-timeline-item:hover .bhe-timeline-step {
    background-color: #1F1D01; /* Invert colors */
    border-color: #F7E804;
}

.bhe-timeline-item:hover .bhe-timeline-step i {
    color: #F7E804; /* Accent yellow */
    transform: scale(1.1) rotate(-5deg);
}
a:hover {
    text-decoration: none;
    color: inherit;
}