.topbar{background:var(--blue-900);color:#fff;font-size:.92rem}.topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 0}.topbar-left,.topbar-right{display:flex;gap:18px;flex-wrap:wrap}.topbar a{color:#fff;opacity:.96}.topbar i{margin-right:7px}.site-header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,.95);backdrop-filter:blur(12px);box-shadow:0 10px 30px rgba(8,34,86,.08)}.nav-wrap{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:22px 0}.brand{display:flex;align-items:center;gap:14px;min-width:0;text-decoration:none}.brand-logo{max-height:56px;width:auto;display:block;flex-shrink:0}.brand-text{display:flex;flex-direction:column;line-height:1.2;min-width:0}.brand-text strong{display:block;font-size:1rem;color:var(--blue-900)}.brand-text span{display:block;color:var(--muted);font-size:.85rem}.main-nav{display:flex;align-items:center;gap:14px}.main-nav a{padding:10px 14px;border-radius:999px;font-weight:700;color:var(--blue-900)}.main-nav a.active,.main-nav a:hover{background:var(--blue-50)}.menu-toggle{display:none;border:none;background:#fff;color:var(--blue-900);font-size:1.2rem;width:44px;height:44px;border-radius:12px;box-shadow:var(--shadow)}.site-footer{background:linear-gradient(180deg,var(--blue-900),#061c47);color:#fff;padding-top:72px}.footer-grid{display:grid;grid-template-columns:1.3fr .9fr .9fr 1fr;gap:28px}.footer-grid h3,.footer-grid h4{color:#fff}.footer-grid p,.footer-grid li,.footer-grid a{color:rgba(255,255,255,.85)}.footer-grid ul{list-style:none;padding:0;margin:0}.footer-grid li{margin:0 0 10px}.footer-social{display:flex;gap:10px;margin-top:18px}.footer-social a{width:40px;height:40px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.1)}.footer-bottom{border-top:1px solid rgba(255,255,255,.15);margin-top:32px;padding:18px 0 26px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;color:rgba(255,255,255,.78)}

/* Light blue background for lighter sections */
.section-light {
    background-color: #f0f7ff; /* Soft light blue shade */
    padding: 60px 0;
}

/* Headings color for contrast on lighter sections */
.section-heading h2 {
    color: #0b3d91; /* Slightly deeper blue for section titles */
}

/* Ensuring review cards stand out on light blue sections */
.review-card {
    background-color: #ffffff; /* White card on light section */
    border: 1px solid #dbe9f6; /* Light blue border */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Review meta (date/email) styling for subtle clarity */
.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #4a4a4a; /* Neutral shade */
}

/* Optional CTA banner with a bold gradient */
.cta-banner {
    background: linear-gradient(135deg, #0b3d91, #1f5bbf);
    color: #ffffff;
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
}