        /* === Fold header (matches _fold_header.html) ======================= */
.fold-header {
  background:#fff;
  box-shadow: 0 2px 16px #eaf1fa2c;
  height:74px;
  position: sticky; top:0; left:0; right:0;
  z-index: 100;
}
.fold-header__inner{
  max-width:1320px; margin:0 auto;
  height:100%;
  padding:0 38px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.fold-logo { height:46px; display:block; }

.fold-account{ position:relative; }
.fold-account__btn{
  background:#ecf6ff;
  border:1px solid #cfe7ff;
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition: background .18s;
}
.fold-account__btn:hover{ background:#dbeafe; }

/* dropdown hidden by default; becomes flex when .open is toggled */
.fold-account__dropdown{
  display:none;
  position:absolute; right:0; top:56px;
  min-width:195px;
  background:#fff; border:1px solid #d7e9ff;
  border-radius:18px; padding:10px 0 8px 0;
  box-shadow:0 6px 22px #b7dafb40; z-index:1000;
}
.fold-account__dropdown.open{ display:flex; flex-direction:column; }

/* dropdown links */
.fold-dd-link{
  display:block; padding:12px 26px 10px 26px;
  color:#223140; text-decoration:none; font-weight:700;
  border-radius:12px; white-space:nowrap;
  transition: color .15s, background .19s, box-shadow .22s;
}
.fold-dd-link:visited{ color:#223140; }       /* prevent purple visited */
.fold-dd-link:hover, .fold-dd-link:focus{
  color:#2C7DB5; background:#eaf3fc;
  box-shadow:0 0 0 100px #eaf3fc inset; outline:none;
}
.fold-dd-link--danger{ color:#d32f2f; }
.fold-dd-link--danger:hover{ background:#ffecec; color:#b71c1c; }
        
        body {
            margin: 0;
            font-family: 'Montserrat', Arial, sans-serif;
            background: #f6fbff;
            color: #223140;
            overflow-x: hidden;
        }
        /* HEADER */
        .header {
            background: #fff;
            box-shadow: 0 2px 16px #eaf1fa2c;
            padding: 0 38px;
            height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0; left: 0; right: 0;
            z-index: 100;
        }
        .logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex: 1;
        }
        .logo img {
            height: 46px;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        .nav a {
            position: relative;
            text-decoration: none;
            color: #223140;
            font-weight: 700;
            font-size: 1.12rem;
            letter-spacing: 0.3px;
            padding: 8px 12px;
            border-radius: 10px;
            transition: color 0.16s, background 0.22s;
        }
        .nav a:after {
            content: '';
            display: block;
            height: 2.5px;
            background: #2C7DB5;
            width: 0;
            margin: 0 auto;
            transition: width 0.24s cubic-bezier(.71,.17,.2,.96);
            border-radius: 2px;
        }
        .nav a:hover:after, .nav a.active:after {
            width: 70%;
        }
        .nav a:hover, .nav a.active {
            color: #2079e0;
            background: #eaf3fc;
        }
        .nav a.home-link:hover, .nav a.home-link.active {
            box-shadow: 0 0 0 100px #eaf3fc inset;
            color: #2C7DB5;
            transition: background 0.18s, box-shadow 0.22s;
        }
        /* Account icon */
        .account-menu {
            position: relative;
            display: flex;
            align-items: center;
        }
        .account-btn {
            background: #ecf6ff;
            border-radius: 50%;
            border: none;
            width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            margin-left: 12px;
            transition: background 0.18s;
            position: relative;
        }
        .account-btn:hover, .account-btn:focus { background: #dbeafe; }
        .account-dropdown {
            display: none;
            flex-direction: column;
            align-items: stretch;
            min-width: 195px;
            position: absolute;
            top: 56px;
            right: 0;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 6px 22px #b7dafb40;
            padding: 10px 0 8px 0;
            z-index: 100;
            text-align: left;
        }
        .account-menu.open .account-dropdown {
            display: flex;
        }
        .account-dropdown-link {
            display: block;
            padding: 12px 26px 10px 26px;
            color: #223140;
            font-weight: 700;
            font-size: 0.7rem;
            background: none;
            border: none;
            border-radius: 12px;
            text-align: center;
            text-decoration: none;
            position: relative;
            cursor: pointer;
            transition: color 0.15s, background 0.19s, box-shadow 0.22s;
            margin: 0;
            white-space: nowrap;
        }
        .account-dropdown-link .underline-blue,
        .account-dropdown-link .underline-red {
            display: inline-block;
            position: relative;
            padding-bottom: 3px;
        }
        .account-dropdown-link .underline-blue::after,
        .account-dropdown-link .underline-red::after {
            content: "";
            display: block;
            height: 2.5px;
            width: 0;
            border-radius: 2px;
            transition: width 0.22s cubic-bezier(.71,.17,.2,.96);
            position: absolute;
            left: 0;
            bottom: 0;
        }
        .account-dropdown-link:hover .underline-blue::after,
        .account-dropdown-link:focus .underline-blue::after,
        .account-dropdown-link.active .underline-blue::after,
        .account-dropdown-link:hover .underline-red::after,
        .account-dropdown-link:focus .underline-red::after,
        .account-dropdown-link.active .underline-red::after {
            width: 100%;
        }
        .account-dropdown-link:hover,
        .account-dropdown-link:focus {
            color: #2C7DB5;
            background: #eaf3fc;
            box-shadow: 0 0 0 100px #eaf3fc inset;
            outline: none;
        }
        .account-dropdown-link.logout-link {
            color: #d32f2f;
        }
        .account-dropdown-link.logout-link:hover,
        .account-dropdown-link.logout-link:focus {
            background: #ffecec;
            color: #b71c1c;
        }

        /* FAQ, Service Area, Newsletter sections*/
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
            max-width: 700px;
            margin: 0 auto;
            text-align: left;
            font-size: 1.11rem;
        }
        .faq-list b { color: #205588; }
        .serve-section {
  width: 100%;
  background: radial-gradient(ellipse 70% 70% at 50% 10%, #eaf3fc 90%, #fafdff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  margin: 64px 0 0 0;
  /* Slight fade corners, optional: */
  /* box-shadow: 0 0 0 9999px #eaf3fc44 inset; */
}
.serve-container {
  background: #fff;
  box-shadow: 0 10px 44px #b7dafb33;
  border-radius: 52px;
  padding: 60px 6vw 54px 6vw;
  max-width: 1140px;
  width: 98vw;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #eaf3fc;
  overflow: hidden;
  /* transition for animation on load */
  animation: servePop 0.8s cubic-bezier(.32,1.12,.24,1.01) 0.07s backwards;
}
@keyframes servePop {
  0% { transform: scale(0.97) translateY(44px); opacity: 0;}
  100% { transform: none; opacity: 1;}
}
.serve-container.skyline-bg {
  position: relative;
  overflow: hidden;
  background: #fff;
  background-image: url('/static/images/chicago-skyline.png');  /* <-- change to your path */
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  
  padding-bottom: 55px; /* adjust as needed */
  box-shadow: 0 10px 44px #b7dafb33;
  border-radius: 52px;
  border: 2px solid #eaf3fc;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 900px) {
  .serve-container.skyline-bg {
    padding-bottom: 34px;      
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .serve-container.skyline-bg {
    padding-bottom: 18px;
    border-radius: 12px;
    background-size: 120% auto; 
  }
}
.serve-pin-animate {
  animation: pin-bounce 2.3s cubic-bezier(.28,.84,.42,1.1) infinite alternate;
  margin-bottom: 18px;
}
@keyframes pin-bounce {
  0%   { transform: translateY(0);}
  60%  { transform: translateY(-12px);}
  100% { transform: translateY(-5px);}
}
.serve-header {
  font-size: 2.2rem;
  font-weight: 800;
  color: #224368;
  margin: 0 0 18px 0;
  text-align: center;
  letter-spacing: -.5px;
}
.serve-desc {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #345870;
  text-align: center;
  font-weight: 600;
}
.serve-bold { font-weight: 900; }
.serve-list-wrap {
  display: flex;
  gap: 100px;
  justify-content: center;
  margin: 0 0 36px 0;
  width: 100%;
  padding-bottom: 6px;
}
.serve-list {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
  font-size: 1.2rem;
  font-weight: 700;
  color: #204463;
}
.serve-list li {
  margin-bottom: 16px;
  transition: color 0.18s, letter-spacing 0.15s;
  line-height: 1.4;
}
.serve-list li:last-child { margin-bottom: 0;}
.serve-list li:hover {
  color: #2C7DB5;
  letter-spacing: .6px;
  cursor: pointer;
}
.serve-footer {
  margin-top: 20px;
  color: #4a6785;
  font-size: 1.16rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: .1px;
}
.serve-contact {
  color: #2C7DB5;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 2px;
  transition: color 0.18s;
}
.serve-contact:hover { color: #1b5fa1; text-decoration: underline;}
/* Responsive for mobile */
@media (max-width: 1000px) {
  .serve-container { max-width: 97vw; border-radius: 24px; padding: 30px 2vw 28px 2vw;}
  .serve-list-wrap { gap: 44px;}
  .serve-header { font-size: 2rem;}
  .serve-desc { font-size: 1.12rem;}
  .serve-list { font-size: 1.07rem;}
}
@media (max-width: 700px) {
  .serve-section { min-height: 0; margin: 34px 0 0 0;}
  .serve-container { border-radius: 14px; padding: 17px 2vw 16px 2vw;}
  .serve-header { font-size: 1.35rem; }
  .serve-desc { font-size: 1.01rem;}
  .serve-list-wrap { flex-direction: column; gap: 0; align-items: center;}
  .serve-list { font-size: 1.01rem; padding-left: 20px;}
  .serve-pin-animate svg { width: 36px; height: 36px;}
}
        .newsletter-section, .newsletter-section * {
  text-decoration: none !important;
  box-shadow: none !important;
}

/* Main block */
.newsletter-section {
  background: #fff;
  border-radius: 44px;
  box-shadow: 0 16px 54px #bedcff44, 0 2px 28px #93c8fa26;
  padding: 56px 4vw 56px 4vw;
  max-width: 900px;
  margin: 64px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Animated mail icon */
.newsletter-icon {
  margin-bottom: 12px;
  animation: floatyMail 2.8s ease-in-out infinite alternate;
}
@keyframes floatyMail {
  0% { transform: translateY(0);}
  100% { transform: translateY(-11px);}
}

.newsletter-header {
  font-size: 2.13rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #224368;
  text-align: center;
  letter-spacing: -.5px;
  text-decoration: none !important;
}

.newsletter-sub {
  color: #2268b0;
  font-size: 1.18rem;
  margin-bottom: 26px;
  text-align: center;
  font-weight: 500;
  text-decoration: none !important;
}

/* Form styling */
.newsletter-form {
  display: flex;
  gap: 0;
  background: #fafdff;
  padding: 7px 12px 7px 7px;
  border-radius: 17px;
  box-shadow: 0 2px 16px #eaf1fa21;
  align-items: center;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  padding: 14px 15px;
  border-radius: 12px;
  border: 1.2px solid #d2e5fc;
  font-size: 1.09rem;
  outline: none;
  width: 100%;
  flex: 1;
  background: #fff;
  margin-right: 10px;
  transition: border 0.18s;
  text-decoration: none !important;
  box-shadow: none !important;
}

.newsletter-form input[type="email"]:focus {
  border-color: #46a4f7;
  box-shadow: none !important;
  text-decoration: none !important;
}

.newsletter-btn {
  background: linear-gradient(90deg, #2C7DB5, #46a4f7 90%);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 14px 30px;
  font-size: 1.14rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.18s, transform 0.14s;
  box-shadow: 0 3px 18px #bedcff26;
  margin-left: 0;
  outline: none;
  text-decoration: none !important;
}

.newsletter-btn:hover, .newsletter-btn:focus {
  background: #2C7DB5;
  box-shadow: 0 7px 28px #b7dafb39;
  transform: translateY(-2px) scale(1.03);
  text-decoration: none !important;
}

@media (max-width: 600px) {
  .newsletter-section {
    padding: 30px 2vw 34px 2vw;
    border-radius: 22px;
  }
  .newsletter-header {
    font-size: 1.34rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 9px;
    padding: 7px 5px;
    max-width: 99vw;
  }
  .newsletter-btn {
    width: 100%;
    padding: 13px 0;
  }
}
a, a:visited, a:active, a:hover, 
.newsletter-section * {
  text-decoration: none !important;
  box-shadow: none !important;
}
input::placeholder {
  text-decoration: none !important;
}
        
        /* --- Stylish Accordion FAQ Styles --- */
.faq-accordion {
  max-width: 700px;
  margin: 0 auto 30px auto;
  border-radius: 32px;
  background: linear-gradient(102deg, #fafdff 70%, #eaf3fc 100%);
  box-shadow: 0 6px 44px #c8e6ff2a;
  overflow: hidden;
  font-size: 1.13rem;
}
.faq-accordion-item {
  border-bottom: 1px solid #e1e8f3;
}
.faq-accordion-item:last-child {
  border-bottom: none;
}
.faq-accordion-question {
  padding: 26px 34px 18px 34px;
  font-weight: 800;
  color: #22508c;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  outline: none;
  text-align: left;
  position: relative;
  transition: background 0.16s;
  font-size: 1.16rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-accordion-question:hover,
.faq-accordion-question[aria-expanded="true"] {
  background: #f3f8fd;
}
.faq-accordion-arrow {
  margin-left: auto;
  transition: transform 0.3s cubic-bezier(.55,1.3,.34,1.1);
  font-size: 1.3em;
  color: #3377e6;
}
.faq-accordion-question[aria-expanded="true"] .faq-accordion-arrow {
  transform: rotate(90deg);
}
.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  background: none;
  padding: 0 34px;
  color: #47618b;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.7;
  transition: max-height 0.38s cubic-bezier(.4,1.3,.55,1.1), padding 0.23s;
}
.faq-accordion-answer.open {
  padding: 0 34px 20px 34px;
  max-height: 280px;
  /* enough for 2-3 lines, will auto expand */
}
@media (max-width: 700px) {
  .faq-accordion, .faq-accordion-question, .faq-accordion-answer { padding-left: 18px; padding-right: 18px; }
  .faq-accordion-question, .faq-accordion-answer { font-size: 1rem; }
}

        /* HAMBURGER (Mobile) */
        .hamburger {
            display: none;
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 9px;
            margin-right: 12px;
            z-index: 1002;
        }
        .hamburger-box {
            width: 32px;
            height: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
            display: block;
            background-color: #2C7DB5;
            height: 3.5px;
            border-radius: 3px;
            width: 32px;
            position: absolute;
            transition: all 0.27s cubic-bezier(.65,.04,.28,1);
        }
        .hamburger-inner {
            position: relative;
            width: 32px;
            height: 3.5px;
        }
        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            position: absolute;
            left: 0;
            width: 32px;
            height: 3.5px;
            background-color: #2C7DB5;
        }
        .hamburger-inner::before { top: -10px; }
        .hamburger-inner::after { top: 10px; }
        .hamburger.active .hamburger-inner {
            background: transparent;
        }
        .hamburger.active .hamburger-inner::before {
            top: 0;
            transform: rotate(45deg);
        }
        .hamburger.active .hamburger-inner::after {
            top: 0;
            transform: rotate(-45deg);
        }
        /* SIDEBAR MENU (MOBILE) */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(31, 61, 104, 0.30);
            z-index: 2000;
            animation: fadein 0.22s;
        }
        .mobile-menu {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 270px;
    background: linear-gradient(112deg, #fafdff 90%, #eaf3fc 100%);
    box-shadow: 4px 0 32px #7ebcfa30;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    z-index: 2001;
    padding: 28px 0 28px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-120%);
    transition: transform 0.25s cubic-bezier(.54,1.3,.3,1.1);
    overflow: hidden;
}
        .mobile-menu.open {
            transform: translateX(0%);
        }
        .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 14px 28px;
    border-bottom: 1px solid #e4eefd;
    margin-bottom: 12px;
}
.mobile-menu-title {
    font-weight: 800;
    font-size: 1.22rem;
    color: #193a5b;
    letter-spacing: -0.7px;
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #1a2433;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.17s;
    padding: 0 4px;
}
.mobile-menu-close:hover {
    opacity: 1;
    color: #b23333;
    background: #fbe9e9;
    border-radius: 7px;
}
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 18px;
}
        .mobile-menu-link {
    color: #193a5b;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.11rem;
    padding: 14px 18px 14px 0;
    border-radius: 13px;
    margin: 0 14px;
    transition: background 0.15s, color 0.15s, padding-left 0.13s;
    position: relative;
    display: flex;
    align-items: center;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}
.mobile-menu-link:hover, .mobile-menu-link:focus {
    background: #eaf3fc;
    color: #2268b0;
    padding-left: 9px;
}
        .mobile-menu-link.active, .mobile-menu-link:hover {
            background: #eaf3fc;
            color: #2C7DB5;
        }
        .mobile-menu-link.logout {
    color: #d32f2f;
    font-weight: 800;
}
.mobile-menu-link.logout:hover {
    background: #ffecec;
    color: #b71c1c;
}
.mobile-menu-bottom {
    border-top: 1px solid #e4eefd;
    margin: 10px 0 0 0;
    padding: 13px 26px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-bottom-link {
    font-size: 1.02rem;
    color: #5176b1;
    text-decoration: none;
    font-weight: 700;
    border-radius: 7px;
    padding: 8px 0;
    transition: background 0.13s, color 0.15s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-menu-bottom-link:hover {
    background: #eaf3fc;
    color: #14568e;
    padding-left: 8px;
}
        .mobile-menu-link.logout:hover { background: #ffecec; color: #b71c1c; }
        @keyframes fadein {
            from { opacity: 0;}
            to { opacity: 1;}
        }
        /* Responsive Styles */
        @media (max-width: 480px) {
    .mobile-menu {
        width: 98vw;
        border-radius: 0 0 18px 0;
        min-width: 0;
        padding: 12px 0 18px 0;
    }
    .mobile-menu-header {
        padding: 0 14px 11px 19px;
        margin-bottom: 7px;
    }
    .mobile-menu-bottom {
        padding: 9px 12px 0 18px;
    }
}
        @media (max-width: 900px) {
            .header {
                padding: 0 7vw 0 0;
                height: 66px;
                justify-content: center;
            }
            .nav { display: none; }
            .hamburger { display: flex; position: absolute; left: 0; top: 0; bottom: 0; height: 66px; }
            .logo { position: absolute; left: 50%; top: 0; bottom: 0; transform: translateX(-50%); margin-left: 0; }
        }
        @media (max-width: 650px) {
            .hero-container { border-radius: 16px; padding: 18px 2vw 24px 2vw; }
            .hero-image img { width: 92vw; }
        }
        @media (max-width: 600px) {
            .header { padding: 0 2vw; }
            .logo img { height: 38px;}
        }
        /* HERO */
        .hero-section {
            width: 100%;
            padding-top: 48px;
            padding-bottom: 22px;
            background: transparent;
        }
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1320px;
            margin: 0 auto;
            background: rgba(255,255,255,0.97);
            border-radius: 44px;
            box-shadow: 0 16px 54px #bedcff44, 0 2px 28px #93c8fa26;
            padding: 64px 56px 64px 56px;
            gap: 38px;
            position: relative;
            transition: box-shadow 0.24s, transform 0.17s;
            animation: heroGlow 3.6s ease-in-out infinite alternate;
        }
        @keyframes heroGlow {
            0% { box-shadow: 0 16px 54px #bedcff44, 0 2px 28px #93c8fa26;}
            100% { box-shadow: 0 26px 68px #7db4f163, 0 6px 54px #c2eaff48;}
        }
        .hero-text {
            max-width: 540px;
            flex: 1;
        }
        .hero-title {
            font-size: 2.85rem;
            font-weight: 800;
            margin-bottom: 18px;
            letter-spacing: -2px;
        }
        .hero-desc {
            font-size: 1.22rem;
            color: #496b8e;
            margin-bottom: 30px;
        }
        .cta-btn {
            background: linear-gradient(90deg, #2C7DB5, #42a1ec);
            color: #fff;
            border: none;
            border-radius: 15px;
            padding: 18px 40px;
            font-size: 1.16rem;
            font-weight: 700;
            box-shadow: 0 4px 20px #a3d4fa26;
            cursor: pointer;
            transition: transform 0.16s, box-shadow 0.18s;
            margin-top: 10px;
        }
        .cta-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 8px 28px #c7e6ff44;
            background: #2C7DB5;
        }
        .hero-image {
            flex: 1;
            min-width: 260px;
            display: flex;
            justify-content: flex-end;
        }
        .hero-image img {
            width: 650px;
            max-width: 100%;
            border-radius: 2.2rem;
            box-shadow: 0 6px 32px #b7dafb35;
            animation: floaty 3s ease-in-out infinite alternate;
        }
        @keyframes floaty {
            0% { transform: translateY(0);}
            100% { transform: translateY(-14px);}
        }
        @media (max-width: 1100px) {
            .hero-container { flex-direction: column-reverse; padding: 36px 16px 36px 16px; }
            .hero-text, .hero-image { justify-content: center; text-align: center; }
            .hero-image img { margin: 0 auto; }
        }
        @media (max-width: 650px) {
            .hero-container { border-radius: 16px; padding: 18px 2vw 24px 2vw; }
            .hero-image img { width: 92vw; }
        }

        .fold-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 64px auto 0 auto;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 16px 54px #bedcff44, 0 2px 28px #93c8fa26;
  padding: 54px 5vw 54px 5vw;
  gap: 44px;
  flex-wrap: wrap;
}
.fold-hero-content {
  flex: 1.1;
  min-width: 320px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.fold-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 17px 0;
  color: #1a3760;
  line-height: 1.2;
  letter-spacing: -1px;
}
.fold-hero-desc {
  font-size: 1.18rem;
  color: #234162;
  margin-bottom: 36px;
  font-weight: 500;
}
.fold-hero-btn {
  background: linear-gradient(90deg, #2C7DB5, #46a4f7 90%);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 17px 44px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px #a3d4fa26;
  transition: background 0.19s, box-shadow 0.18s, transform 0.13s;
}
.fold-hero-btn:hover {
  background: #2C7DB5;
  box-shadow: 0 7px 22px #b7dafb3b;
  transform: translateY(-2px) scale(1.04);
}
.fold-hero-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: right;
}
.fold-hero-img img {
  width: 650px;
  max-width: 100vw;
  border-radius: 20px;
  box-shadow: 0 7px 28px #b7dafb4b;
  object-fit: cover;
}
@media (max-width: 950px) {
  .fold-hero-trust { flex-direction: column-reverse; gap: 26px; padding: 24px 2vw 32px 2vw;}
  .fold-hero-img img { width: 96vw; max-width: 420px;}
  .fold-hero-content { align-items: center; text-align: center;}
}

        /* UNIFORM CONTAINER FOR ALL SECTIONS */
        .container-section {
            background: #fff;
            border-radius: 44px;
            box-shadow: 0 16px 54px #bedcff44, 0 2px 28px #93c8fa26;
            padding: 56px 4vw 56px 4vw;
            max-width: 1320px;
            margin: 64px auto 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: heroGlow 3.6s ease-in-out infinite alternate;
        }
        /* Headline for features section */
/* Headline for features section */
.features-header {
    font-size: 2.13rem;
    font-weight: 800;
    margin-bottom: 34px;
    color: #224368;
    text-align: center;
    letter-spacing: -.5px;
}
/* Features list layout */
.features-list {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    width: 100%;
}
@media (max-width: 950px) {
    .features-list { flex-direction: column; gap: 26px; }
}
/* Feature cards with bounce animation */
.feature-card {
    background: #fafdff;
    border-radius: 32px;
    box-shadow: 0 4px 24px #d3e9fa32;
    padding: 42px 28px 38px 28px;
    min-width: 200px;
    flex: 1;
    text-align: center;
    transition: transform 0.23s cubic-bezier(.41,1.3,.34,1.1), box-shadow 0.21s;
    cursor: pointer;
    will-change: transform;
}
.feature-card:hover {
    transform: translateY(-13px) scale(1.055);
    box-shadow: 0 14px 38px #aad6fa58;
}
.feature-icon {
    font-size: 2.85rem;
    margin-bottom: 18px;
    transition: transform 0.21s cubic-bezier(.41,1.4,.34,1.2);
    display: flex;
    justify-content: center;
}
.feature-card:hover .feature-icon {
    transform: scale(1.17) rotate(-6deg);
}
.feature-title {
    font-weight: 800;
    font-size: 1.22rem;
    margin-bottom: 11px;
    letter-spacing: -0.7px;
    color: #17395d;
}
.feature-desc {
    color: #516a8e;
    font-size: 1.08rem;
    text-align: center;
    line-height: 1.45;
}
        /* Testimonials, CTA and Footer remain unchanged from your previous code */
        .testimonials-section {
  margin: 80px 0 0 0;
  background: #eaf3fc;
  padding: 60px 0;
}
.testimonials-header {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #22508c;
  margin-bottom: 40px;
}
.testimonials-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #a9c9ea #eaf3fc;
}
.testimonial-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 19px;
  padding: 26px 32px 32px 32px;
  min-width: 310px;
  box-shadow: 0 2px 20px #b7dafb28;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #99cfff42;
  transform: translateY(-7px) scale(1.03);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 13px;
  margin-left: -3px;
  animation: fadeinUp 0.9s cubic-bezier(.22,1.15,.22,1.07) .09s backwards;
}
.star {
  width: 22px;
  height: 22px;
  opacity: 0;
  transform: scale(0.7) rotate(-19deg);
  animation: starPop 0.7s cubic-bezier(.32,1.29,.46,.97) forwards;
}
.star:nth-child(1) { animation-delay: 0.05s; }
.star:nth-child(2) { animation-delay: 0.16s; }
.star:nth-child(3) { animation-delay: 0.27s; }
.star:nth-child(4) { animation-delay: 0.38s; }
.star:nth-child(5) { animation-delay: 0.49s; }
@keyframes starPop {
  0% { opacity: 0; transform: scale(0.7) rotate(-19deg);}
  80% { opacity: 1; transform: scale(1.13) rotate(10deg);}
  100% { opacity: 1; transform: scale(1) rotate(0deg);}
}
.testimonial-content {
  color: #3c5367;
  font-size: 1.13rem;
  margin-bottom: 17px;
  flex: 1 1 auto;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 11px;
}
.testimonial-user img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.2px solid #c2e6ff;
}
.testimonial-name {
  font-weight: 600;
  color: #22508c;
}
@media (max-width: 900px) {
  .testimonials-list {
    gap: 14px;
  }
  .testimonial-card {
    min-width: 250px;
    padding: 21px 14px 28px 14px;
    font-size: 1rem;
  }
}

        /* CTA banner */
        .cta-banner {
            margin: 66px auto 0 auto;
            text-align: center;
            background: linear-gradient(90deg, #46a4f7, #86c3f7 60%);
            padding: 46px 20px;
            border-radius: 32px;
            color: #fff;
            max-width: 820px;
            font-size: 1.53rem;
            font-weight: 600;
            box-shadow: 0 5px 36px #b7dafb4c;
            letter-spacing: 1.3px;
            animation: pulse 2s infinite alternate;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .cta-banner .cta-btn {
            margin-top: 20px;
            font-size: 1.22rem;
            min-width: 190px;
        }
        @keyframes pulse {
            0% { box-shadow: 0 5px 36px #b7dafb4c;}
            100% { box-shadow: 0 8px 48px #8fd4ff6a;}
        }
        .footer {
    background: #f3f8fd;
    color: #406377;
    font-size: 1.07rem;
    text-align: center;
    padding: 26px 0 10px 0;
    margin-top: 44px;
}
.footer-main {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 18px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
    row-gap: 10px;
    margin-bottom: 12px;
    font-weight: 700;
}
.footer-links a {
    color: #2C7DB5;
    text-decoration: none;
    font-size: 1.10rem;
    letter-spacing: 0.2px;
    padding: 2px 7px;
    border-radius: 7px;
    transition: color 0.15s, background 0.12s;
    display: inline-block;
}
.footer-links a:hover,
.footer-links a.active {
    color: #155c98;
    background: #eaf3fc;
}
.footer-sep {
    display: inline-block;
    width: 1.5px;
    height: 15px;
    background: #bcd8ee;
    margin: 0 2px;
    vertical-align: middle;
}
.footer-socials {
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 19px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-socials img {
    width: 24px;
    max-width: 24px;
    height: 24px;
    filter: grayscale(0.15) contrast(1.05);
    transition: filter 0.17s, transform 0.13s;
}
.footer-socials img:hover {
    filter: brightness(1.3) drop-shadow(0 0 4px #b7dafb33);
    transform: scale(1.14);
}
.footer-copyright {
    margin-top: 13px;
    color: #597998;
    font-size: 0.96rem;
    line-height: 1.5;
}
.f-legal{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:18px 0 0;
  justify-content:center;
  align-items:center;
  grid-column:1 / -1;
  text-align:center;
}
.f-legal a{ color:#9dc1df; font-weight:700; text-decoration:none }
.f-legal a:hover{ color:#cfe6ff }
.f-bottom {
  border-top: 1px solid var(--footer-line);
  background: #0a1a27;
}
.f-bottom .footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 16px 22px;
}
.copy { color: #a9c6de; font-weight: 700; display: block; }
.made { color: #82a6c7; font-weight: 700; display: block; }

/* Responsive for mobile */
@media (max-width: 700px) {
    .footer-main {
        max-width: 97vw;
        padding: 0 5vw;
    }
    .footer-links {
        gap: 0 5px;
        font-size: 1rem;
        row-gap: 5px;
    }
}
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
        row-gap: 2px;
    }
    .footer-sep {
        display: none;
    }
    .footer-socials {
        gap: 13px;
    }
    .footer-socials img {
        width: 21px;
        height: 21px;
    }
}
.how-works-section {
  background: #fff;
  border-radius: 44px;
  box-shadow: 0 16px 54px #bedcff44, 0 2px 28px #93c8fa18;
  max-width: 1200px;
  margin: 60px auto;
  padding: 52px 2vw 62px 2vw;
  text-align: center;
  position: relative;
  overflow: visible;
}
.how-works-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #224368;
  margin-bottom: 36px;
  letter-spacing: -1px;
}
.how-works-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 48px;
  max-width: 1150px; 
  margin: 0 auto;
}
.how-works-card {
  flex: 1 1 210px;
  max-width: 260px;
  min-width: 210px;
  background: #fafdff;
  border-radius: 26px;
  box-shadow: 0 4px 24px #d3e9fa32;
  padding: 40px 18px 30px 18px;
  margin: 0 10px;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.how-works-card:hover, .how-works-card:focus-within {
  transform: translateY(-11px) scale(1.06);
  box-shadow: 0 16px 44px #b7dafb44;
  background: #f3f8fd;
}
.how-works-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  background: linear-gradient(135deg,#eaf3fc,#fafdff 80%);
  border-radius: 50%;
  box-shadow: 0 2px 18px #c2eaff28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #2C7DB5;
  transition: background 0.18s, box-shadow 0.18s;
}
.how-works-card:hover .how-works-icon {
  background: linear-gradient(135deg, #dbeafe 70%, #a5d8fa 100%);
  box-shadow: 0 6px 24px #46a4f746;
  color: #175f95;
}
.how-works-label {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1e3552;
  margin-bottom: 7px;
  letter-spacing: -0.2px;
}
.how-works-desc {
  font-size: 1.04rem;
  color: #2C7DB5;
  font-weight: 600;
  margin-bottom: 3px;
  opacity: 0.92;
}
.how-works-progress {
  margin: 34px auto 0 auto;
  max-width: 480px;
  height: 5px;
  background: #eaf3fc;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px #bedcff38;
}
.how-works-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2C7DB5, #46a4f7 90%);
  border-radius: 8px;
  transition: width 0.32s cubic-bezier(.51,1.21,.37,1);
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
}
.how-works-icon {
  font-size: 2.7rem;
  background: #f0f7ff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #bde5fa35;
  padding: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Responsive */
@media (max-width: 900px) {
  .how-works-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 99vw;
  }
  .how-works-card {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }
}

/* --- Mobile-first tightening for public pages --- */
@media (max-width: 780px) {
  body { font-size: 15px; }
  .header {
    height: 60px;
    padding: 0 14px;
    justify-content: center;
  }
  .hamburger {
    left: 12px;
    right: auto;
    position: absolute;
    height: 60px;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
  .logo img { height: 34px; }
  .hero-section { padding-top: 30px; }
  .hero-container { padding: 22px 16px 26px; gap: 16px; border-radius: 18px; }
  .hero-text { text-align: center; }
  .hero-title { font-size: 1.85rem; line-height: 1.18; letter-spacing: -1px; margin-bottom: 10px; }
  .hero-desc { font-size: 0.98rem; line-height: 1.55; margin-bottom: 14px; }
  .cta-btn,
  .fold-hero-btn {
    width: min(80vw, 280px);
    min-width: 180px;
    align-self: center;
    padding: 12px 18px;
    font-size: 0.98rem;
  }
  .container-section { width: min(100%, calc(100vw - 18px)); padding: 26px 16px 28px; border-radius: 22px; margin: 34px auto 0; }
  .features-list { gap: 16px; }
  .feature-card { padding: 26px 18px; }
  .fold-hero-trust { padding: 24px 16px 26px; border-radius: 22px; gap: 18px; }
  .fold-hero-content { align-items: center; text-align: center; }
  .fold-hero-content h1 { font-size: 1.78rem; line-height: 1.18; }
  .fold-hero-desc { font-size: 1.05rem; margin-bottom: 18px; }
  .fold-hero-img { justify-content: center; }
  .fold-hero-img img { width: min(92vw, 360px); }
  .serve-section { margin: 32px 0 0; padding: 0 8px; }
  .serve-container { padding: 18px 14px 20px; border-radius: 18px; }
  .serve-header { font-size: 1.3rem; }
  .serve-desc { font-size: 1.02rem; }
  .serve-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    width: 100%;
    align-items: start;
  }
  .serve-list { width: 100%; padding-left: 18px; font-size: 1rem; margin: 0; }
  .newsletter-section { margin-top: 38px; padding: 28px 14px 30px; border-radius: 20px; }
  .newsletter-header { font-size: 1.35rem; }
  .newsletter-form { width: 100%; padding: 9px 8px; gap: 10px; }
  .newsletter-form input[type="email"] { margin-right: 0; }
  .newsletter-btn { width: 100%; }
  .how-works-section { margin: 40px auto; padding: 28px 14px 32px; border-radius: 22px; }
  .how-works-title { font-size: 1.55rem; margin-bottom: 20px; }
  .how-works-cards { gap: 16px; }
  .how-works-card { padding: 26px 18px; max-width: 420px; width: 100%; }
  .testimonials-section { padding: 40px 0 44px; }
  .testimonials-list { padding: 0 14px; }
  .testimonial-card { min-width: 260px; }
  .cta-banner { margin-top: 44px; padding: 32px 16px; border-radius: 20px; font-size: 1.2rem; }
  .features-header { font-size: 1.55rem; }
  .footer-main { padding: 0 16px; }
  .footer-links { gap: 8px 12px; }
  /* CTA tiles consistency */
  #get-started .cta-grid { gap: 18px; }
  #get-started .cta-card { min-height: 100%; }
  #get-started .cta-figure { height: 170px; aspect-ratio: auto; }
  #get-started .cta-img { height: 100%; object-fit: cover; }
  #get-started .cta-btn { width: 100%; align-self: center; max-width: 240px; }
  /* Footer mobile layout */
  .site-footer .footer-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 22px 16px;
  }
  .f-col { text-align: left; }
  .f-col:first-child {
    grid-column: 1 / -1;
    text-align: left;
  }
  .f-col:nth-child(2) { order: 2; }
  .f-col:nth-child(3) { order: 3; }
  .f-col:nth-child(4) {
    order: 4;
    grid-column: 1 / -1;
    text-align: left;
  }
  .f-tagline,
  .f-newsletter { display: none; }
  .f-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
    text-align: center;
  }
  .f-bottom .footer-wrap {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }
  .copy { white-space: normal; display: block; }
  .made { display: block; margin-top: 4px; }
}
@media (max-width: 520px) {
  .hero-title { font-size: 1.8rem; }
  .hero-container { padding: 18px 12px 22px; }
  .container-section { padding: 22px 14px 24px; border-radius: 16px; }
  .fold-hero-trust { border-radius: 18px; }
  .serve-container { border-radius: 14px; }
}
