@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Outfit:wght@100..900&display=swap');

:root {
    /* Typography */
    --ff-heading: "Crimson Pro", serif;
    --ff-body: "Outfit", sans-serif;

    /* Colors */
    --clr-navy: #152C40;
    --clr-navy-light: #1c354e;
    --clr-tan: #c29f7c;
    --clr-tan-hover: #b38f6b;
    --clr-peach: #dfb48c;
    --clr-cream: #F1EFE9;
    --clr-dark: #334155;
    --clr-white: #ffffff;
    --clr-gray: #152C40;
    --clr-gray-light: #64748b;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    /* 16px */
}

body {
    font-family: var(--ff-body);
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.6;
    color: var(--clr-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-heading);
    line-height: 1.1;
    color: var(--clr-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* Custom Container */
.custom-container {
    max-width: 1495px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Reusable Button Styles */
.btn-pfc-tan {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--clr-navy);
    background-color: var(--clr-tan);
    border: 2px solid var(--clr-tan);
    padding: 10px 32px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 5px;
    /* Sharp modern look */
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-pfc-tan:hover {
    background-color: #D8B99C;
    color: #152C40;
    border-color: #D8B99C;
    text-decoration: none;
}

/* Top Announcement Bar */
.announcement-bar {
    background-color: var(--clr-peach);
    color: var(--clr-navy);
    padding: 8px 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.announcement-text {
    letter-spacing: 0.5px;
}

.announcement-icon {
    height: 16px;
    width: auto;
    vertical-align: middle;
}

/* Main Header */
.main-header {
    background-color: var(--clr-navy);
    padding: 24px 0;
    position: sticky;
    z-index: 10;
    top: 0;
}

.main-header .custom-container {
    max-width: 1720px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.main-header .mobile-logo {
    display: none;
}

.c-menu-area {
    display: none;
}

.nav-menu {
    gap: 36px;
}

.nav-menu li a {
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: 0.925rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-tan);
    transition: var(--transition-smooth);
}

.nav-menu li a:hover,
.nav-menu li.current_page_item a {
    color: var(--clr-tan);
}

.nav-menu li a:hover::after,
.nav-menu li.current_page_item a::after {
    width: 100%;
}

/* Prevent uppercase transform on FAQs menu item to allow lowercase 's' */
#menu-item-161 a,
.menu-item-161 a {
    text-transform: none !important;
}

/* Hamburger Menu Toggle */
.c-menu {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    outline: none;
}

.c-menu .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-white);
    transition: var(--transition-smooth);
}

.c-menu.crossed .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.c-menu.crossed .bar:nth-child(2) {
    opacity: 0;
}

.c-menu.crossed .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 650px;
    background-color: #FAF8F6;
    overflow: hidden;
    position: relative;
}

.hero-left {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: max(20px, calc((100vw - 1720px) / 2 + 20px));
    padding-top: 80px;
    padding-bottom: 120px;
    /* Rounded bottom-right corner */
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
    width: 100%;
}

.hero-title,
.hero-content h1 {
    font-family: var(--ff-heading);
    font-size: 4rem;
    /* Desktop size: ~64px */
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 1.15;
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 16px;
}

.hero-title::after,
.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--clr-tan);
}

.hero-text-lead,
.hero-content p {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 140%;
    color: #152C40;
    font-family: var(--ff-heading);
    margin-bottom: 28px;
}

.hero-text-sub {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--clr-gray);
    margin-bottom: 0;
}

.hero-right {
    width: 55%;
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-bottom-left-radius: 180px;
    /* Smooth large curved bottom corner */
}

/* Rob Managed the Finances Section */
.finance-section {
    background-color: var(--clr-cream);
    padding-top: 180px;
    /* Pushes content down to offset negative margin overlap */
    padding-bottom: 120px;
    margin-top: -120px;
    /* Overlaps with the hero banner */
    position: relative;
    z-index: 1;
    /* Lies behind the hero banner elements */
}

.finance-image-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.section-title,
.finance-content h2,
.what-we-do-card h2,
.advisory-section h2,
.built-section h2,
.get-involved-section h2,
.request-call-section h2,
.faq-section h2,
.hww-process-section h2,
.hww-plans-section h2,
.hww-content-wrap h2,
.solutions-details-section h2,
.not-advisory-section h2,
.companions-section h2 {
    font-family: var(--ff-heading);
    font-size: 2.9rem;
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 140%;
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after,
.finance-content h2::after,
.what-we-do-card h2::after,
.advisory-section h2::after,
.built-section h2::after,
.get-involved-section h2::after,
.request-call-section h2::after,
.faq-section h2::after,
.hww-process-section h2::after,
.hww-plans-section h2::after,
.hww-content-wrap h2::after,
.solutions-details-section h2::after,
.not-advisory-section h2::after,
.companions-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--clr-tan);
}

.finance-content h2 strong {
    font-style: italic;
    font-weight: 600;
}

.finance-text,
.finance-content p {
    font-family: var(--ff-body);
    font-size: 1.2rem;
    line-height: 150%;
    color: var(--clr-gray);
    margin-bottom: 24px;
}

.finance-text em,
.finance-content p em {
    font-family: var(--ff-heading);
    font-style: italic;
    font-weight: inherit;
    font-size: 1.15em;
    line-height: 0.9;
}

/* What We Do Section */
.what-we-do-wrapper {
    background-color: #E8DCBC;
}

.what-we-do-section {
    background-image: url('images/what-we-do-img.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    border-bottom-right-radius: 180px;
    overflow: hidden;
}

.what-we-do-card {
    background-color: var(--clr-cream);
    padding: 60px;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.what-we-do-list,
.what-we-do-card ul {
    margin-bottom: 55px;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.what-we-do-list li,
.what-we-do-card ul li {
    font-family: var(--ff-body);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #152C40;
    margin-bottom: 20px;
    position: relative;
}

.what-we-do-list li:last-child,
.what-we-do-card ul li:last-child {
    margin-bottom: 0;
}

/* Advisory Section */
.advisory-section {
    background: linear-gradient(90deg, #E3CBB6 0%, #E8DCBC 100%);
    padding: 120px 0;
    position: relative;
}

.advisory-section h2::after {
    width: 100%;
    max-width: 595px;
}

.advisory-card {
    background-color: #F2EFEA;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.advisory-card-title,
.advisory-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: #152C40;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.advisory-card-title::after,
.advisory-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    border-bottom: 1px solid var(--clr-tan);
}

.advisory-card-lead,
.advisory-section:not(.about-advisory-section) .advisory-card-content p:first-of-type {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: #152C40;
    margin-bottom: 16px;
    line-height: 1.4;
}

.advisory-card-text,
.advisory-section:not(.about-advisory-section) .advisory-card-content p:last-of-type {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.95rem;
    color: #152C40;
    line-height: 1.5;
    margin-bottom: 0;
}

/* We Build Section */
.built-section {
    background-color: #152C40;
    padding: 120px 0;
    border-radius: 200px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.built-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/built-bg-img.webp');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    opacity: 0.33;
    pointer-events: none;
}

.built-section .section-title,
.built-section h2 {
    color: #ffffff;
}

.built-section h2::after {
    width: 100%;
    max-width: 550px;
    border-bottom-color: #43515D;
}

.built-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.built-card {
    background-color: #F2EFEA;
    padding: 41px 51px 86px 50px;
    border-radius: 5px;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.built-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.built-card-title,
.built-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: #152C40;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.2;
}

.built-card-title::after,
.built-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    border-bottom: 1px solid var(--clr-tan);
}

.built-card-text,
.built-card p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 1rem;
    color: #152C40;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Built Section Wrapper */
.built-section-wrapper {
    background-color: #E3CBB6;
}

/* Container Width Expansion */
.what-we-do-section .custom-container,
.advisory-section .custom-container,
.built-section .custom-container,
.hww-process-section .custom-container,
.hww-plans-section .custom-container,
.solutions-details-section .custom-container,
.site-footer .custom-container {
    max-width: 1720px;
}

/* Get us Involved Section */
.get-involved-section {
    background-color: #F1EFE9;
    padding: 100px 0;
    text-align: center;
}

.get-involved-section .section-title,
.get-involved-section h2 {
    text-align: center;
    margin-bottom: 24px;
}

.get-involved-section .section-title::after,
.get-involved-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    max-width: 458px;
    width: 100%;
}

.get-involved-text,
.get-involved-section p {
    font-family: var(--ff-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--clr-navy);
    margin-bottom: 40px;
}

.get-involved-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Styles */
.site-footer {
    background-color: #F1EFE9;
    padding-bottom: 20px;
}

.footer-main {
    background-color: #152C40;
    border-radius: 5px;
    padding: 45px 80px;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0;
    margin-bottom: 50px;
}

/* Links Container & jQuery-split menus */
.footer-links-container {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-menu-upper,
.footer-menu-lower {
    display: flex;
    flex-direction: row;
    gap: 12px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-upper {
    margin-bottom: 20px;
}

.footer-menu-upper li a,
.footer-menu-lower li a {
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.footer-menu-upper li a:hover,
.footer-menu-lower li a:hover {
    color: var(--clr-tan);
}

/* Logo */
.footer-logo-wrap {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 72px;
    width: auto;
}

/* Badges Grid Placement */
.footer-badge-household {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.footer-badge-seniors {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.footer-badge-text {
    font-family: var(--ff-body);
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--clr-white);
}

.footer-badge-icon {
    height: 20px;
    width: auto;
}

/* Disclaimer */
.footer-disclaimer {
    font-family: var(--ff-body);
    font-size: 0.94rem;
    line-height: 1.6;
    color: #FFF;
    text-align: center;
    margin: 0 auto;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 20px 0 0 0;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--clr-navy);
}

.footer-copyright p {
    margin: 0;
}

/* ==========================================
   Inner Banner Section (Desktop)
   ========================================== */
.inner-banner {
    display: flex;
    min-height: 350px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.inner-banner-left {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: max(20px, calc((100vw - 1720px) / 2 + 20px));
    padding-top: 60px;
    padding-bottom: 145px;
    position: relative;
    z-index: 2;
}

.inner-banner-content {
    max-width: 620px;
    width: 100%;
}

.inner-banner-title,
.inner-banner-content h1 {
    font-family: var(--ff-heading);
    font-size: 4rem;
    font-weight: 600;
    color: var(--clr-navy);
    margin: 0;
}

.inner-banner-right {
    width: 55%;
    position: relative;
    z-index: 2;
}

.inner-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 0 0 200px;
}

/* ==========================================
   Common Content with Image Section (Desktop)
   ========================================== */
.how-we-work-content {
    background-color: #F1EFE9;
    padding: 280px 0 250px;
    margin-top: -80px;
    z-index: 1;
    position: relative;
}

.hww-image-wrap {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.hww-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.hww-content-wrap {
    background-color: transparent;
    padding-left: 50px;
    box-shadow: none;
    border-radius: 0;
}

.hww-title,
.hww-content-wrap h2 {
    /* font-size: 3rem;
    line-height: 1.25; */
    margin-bottom: 28px;
}

.os-subtitle,
.how-we-work-content h4 {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 150%;
    color: #152C40;
    margin: 0 0 25px;
}

.hww-text,
.hww-content-wrap p {
    font-family: var(--ff-body);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--clr-navy);
    margin: 0 0 30px;
}

.hww-text a,
.hww-content-wrap p a {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* ==========================================
   Our Process Section (Desktop-Only)
   ========================================== */
.hww-process-section {
    background-color: var(--clr-navy);
    padding: 120px 0 140px;
    position: relative;
    z-index: 2;
}

.hww-process-section-title.section-title,
.hww-process-section h2 {
    color: #ffffff;
    margin-bottom: 60px;
}

.hww-process-section-title.section-title::after,
.hww-process-section h2::after {
    width: 140px;
    /* Fixed design title underline width */
}

.hww-process-row.row {
    margin-left: -10px;
    margin-right: -10px;
    row-gap: 20px;
    margin-top: 20px;
}

.hww-process-row.row>div {
    padding-left: 10px;
    padding-right: 10px;
}

/* Reusable card component styles */
.hww-process-card {
    background-color: #F2EFEA;
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hww-process-card-title,
.hww-process-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hww-process-card-divider {
    width: 40px;
    height: 1px;
    background-color: var(--clr-tan);
    margin-bottom: 24px;
}

.hww-process-card-subtitle,
.hww-process-card p:first-of-type {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 1.07rem;
    color: var(--clr-navy);
    line-height: 1.4;
    margin-bottom: 20px;
}

.hww-process-card-text,
.hww-process-card p:not(:first-of-type) {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--clr-navy);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hww-process-card-text:last-child,
.hww-process-card p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Flexible Plans Section (Desktop-Only)
   ========================================== */
.hww-plans-section {
    background-color: var(--clr-white);
    padding: 120px 0 100px;
    position: relative;
    z-index: 2;
}

.hww-plans-section-title.section-title,
.hww-plans-section h2 {
    color: var(--clr-navy);
    margin-bottom: 60px;
}

.hww-plans-section-title.section-title::after,
.hww-plans-section h2::after {
    width: 100%;
    max-width: 575px;
    /* Fixed underline width to match title scale */
}

.hww-plans-row.row {
    margin-left: -10px;
    margin-right: -10px;
    row-gap: 20px;
    margin-top: 20px;
}

.hww-plans-row.row>div {
    padding-left: 10px;
    padding-right: 10px;
}

/* Plan Card layout & styling */
.hww-plan-card {
    background-color: #F2EFEA;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border: none;
}

.hww-plan-card-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.hww-plan-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hww-plan-card:hover .hww-plan-card-img {
    transform: scale(1.03);
}

.hww-plan-card-body {
    padding: 30px 24px 40px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #F2EFEA;
}

.hww-plan-card-title,
.hww-plan-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 8px;
    line-height: 1.25;
}

.hww-plan-card-subtitle,
.hww-plan-card-body p {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--clr-navy);
    line-height: 1.4;
    margin-bottom: 0;
}

.hww-plan-card-price-bar {
    background-color: #D6BEA6;
    /* Match design tan/peach pricing bar */
    padding: 18px 20px;
    text-align: center;
    font-family: var(--ff-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-navy);
    margin-top: auto;
}

.hww-plans-footnote,
.hww-plans-section>.custom-container>p {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--clr-navy);
    margin-top: 40px;
    margin-bottom: 32px;
}

.hww-plans-btn-wrap {
    margin-top: 10px;
}

.how-we-work-content.solutions-page-hww {
    padding-bottom: 125px;
}

/* ==========================================
   Solutions Details Section (Desktop-Only)
   ========================================== */
.solutions-details-section {
    background-color: #F1EFE9;
    position: relative;
    z-index: 2;
}

.solutions-plans-title.section-title,
.solutions-details-section h2 {
    color: var(--clr-navy);
    text-align: center;
    margin-bottom: 60px;
}

.solutions-plans-title.section-title::after,
.solutions-details-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 575px;
}

.solutions-packages-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.solutions-package-card {
    background-color: var(--clr-white);
    border: 1px solid #D8B99C;
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 10px 30px rgba(21, 44, 64, 0.02);
    overflow: hidden;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-title,
.package-title-wrap h3 {
    font-family: var(--ff-heading);
    font-size: 2.9rem;
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 1.2;
    margin-bottom: 0;
}

.package-subtitle,
.package-title-wrap p {
    font-family: var(--ff-body);
    font-size: 1.8rem;
    color: var(--clr-navy);
    font-weight: 400;
    margin-bottom: 0;
}

.package-price-badge {
    background-color: #F1EFE9;
    border-radius: 12px;
    padding: 18px 36px;
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--clr-navy);
    text-align: center;
    white-space: nowrap;
}

.package-divider {
    width: 100%;
    max-width: 625px;
    height: 1px;
    background-color: #BF9B77;
    margin: 20px 0 35px 0;
}

.package-desc {
    margin-bottom: 40px;
}

.package-desc p {
    font-family: var(--ff-body);
    font-size: 1.4rem;
    color: var(--clr-navy);
    margin-bottom: 24px;
    line-height: 150%;
}

.package-desc p:last-child {
    margin-bottom: 0;
}

.package-details-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.package-image-col {
    width: 45%;
    flex-shrink: 0;
}

.package-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.package-services-col {
    width: 55%;
    flex-grow: 1;
}

.services-list-title,
.package-services-col h4 {
    font-family: var(--ff-heading);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    position: relative;
    pointer-events: none;
}

.services-list-title::after,
.package-services-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #BF9B77;
}

.services-list,
.package-services-col ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.services-list li,
.package-services-col ul li {
    font-family: var(--ff-body);
    font-size: 1.2rem;
    line-height: 160%;
    color: var(--clr-navy);
    margin-bottom: 0;
    position: relative;
    padding-left: 24px;
}

.services-list li::before,
.package-services-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--clr-navy);
    font-size: 1.25rem;
    line-height: 1.2;
}

.services-list li:last-child,
.package-services-col ul li:last-child {
    margin-bottom: 0;
}

.services-list li.list-intro::before,
.services-list li.list-category::before,
.package-services-col ul li.list-intro::before,
.package-services-col ul li.list-category::before,
.package-services-col ul>li:first-child::before {
    display: none;
}

.services-list li.list-intro,
.package-services-col ul li.list-intro,
.package-services-col ul>li:first-child {
    padding-left: 0;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 24px;
}

.services-list li.list-category,
.package-services-col ul li.list-category {
    padding-left: 0;
    margin-bottom: 24px;
}

.category-title,
.package-services-col ul>li>strong {
    font-weight: 500;
    font-size: 20px;
    display: block;
    margin-bottom: 0;
}

.services-list .sub-services-list,
.package-services-col ul ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0 8px;
}

.services-list .sub-services-list li {
    position: relative;
    font-size: 1.2rem;
    line-height: 150%;
    margin-bottom: 0;
    padding-left: 20px;
}

.services-list .sub-services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--clr-navy);
    font-size: 1.1rem;
    line-height: 1.2;
}

.services-list .sub-services-list li:last-child {
    margin-bottom: 0;
}


.package-footnote {
    text-align: center;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--clr-navy);
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 0;
}

.package-footer-banner {
    background-color: #D5B393;
    margin: 40px -80px -60px -80px;
    padding: 60px 80px;
}

.package-footer-banner-title,
.package-footer-banner h4 {
    font-family: var(--ff-heading);
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 55px;
}

.package-footer-banner-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.package-footer-banner-col {
    flex: 1;
}

.banner-col-title,
.package-footer-banner-col h5 {
    font-family: var(--ff-body);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 18px;
}

.banner-col-text,
.package-footer-banner-col p {
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--clr-navy);
    line-height: 1.4;
    margin-bottom: 0;
}

.price-badge-estimated {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-badge-label {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-navy);
    opacity: 0.7;
    margin-bottom: 2px;
}

.price-badge-value {
    display: block;
    font-size: 1.25rem;
}

.pipeline-box {
    background-color: #F1EFE9;
    border: 1px solid #BF9B77;
    border-radius: 5px;
    padding: 30px 45px;
    margin-top: 40px;
    text-align: center;
}

.pipeline-box-title,
.pipeline-box h5 {
    font-family: var(--ff-body);
    font-size: 1.52rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 22px;
}

.pipeline-box-text,
.pipeline-box p {
    font-family: var(--ff-body);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--clr-navy);
    margin-bottom: 0;
}

/* ==========================================
   About Page - Who We Are Section (Desktop)
   ========================================== */

.about-advisory-section {
    background: linear-gradient(90deg, #E3CBB6 0%, #E8DCBC 100%);
    margin-top: -85px;
    position: relative;
}

.about-advisory-section .section-title,
.about-advisory-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-advisory-section .section-title::after,
.about-advisory-section h2::after {
    width: 170px;
    left: 0;
    transform: none;
}

.about-advisory-card {
    background-color: #F2EFEA;
    /* Light cream/beige matching standard advisory card */
    border-radius: 5px;
    /* Sleek, slightly rounded corners matching design buttons */
    padding: 45px 35px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-advisory-card .advisory-card-text,
.about-advisory-card p {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    /* Clean and legible text size matching the design */
    line-height: 1.6;
    color: var(--clr-navy);
}

/* Ensure About advisory cards remain vertical block style on all viewports */
.about-advisory-section .about-advisory-card,
.not-advisory-section .about-advisory-card {
    display: block;
    height: 100%;
}

.about-advisory-section .about-advisory-card .advisory-card-title,
.about-advisory-section .about-advisory-card h3,
.not-advisory-section .about-advisory-card .advisory-card-title,
.not-advisory-section .about-advisory-card h3 {
    width: 100%;
    margin-bottom: 24px;
}

.about-advisory-section .about-advisory-card .advisory-card-content,
.not-advisory-section .about-advisory-card .advisory-card-content {
    width: 100%;
}


/* ==========================================
   About Page - Who We Are Not Section (Desktop)
   ========================================== */
.not-advisory-wrapper {
    background-color: #F1EFE9;
    /* Matches get-involved-section background */
}

.not-advisory-section {
    background-color: #152C40;
    /* Dark navy */
    padding: 120px 0 185px;
    border-bottom-right-radius: 180px;
    /* Curve matching project aesthetic */
    position: relative;
    overflow: hidden;
}

.not-advisory-section .section-title,
.not-advisory-section h2 {
    color: #ffffff;
    /* White title */
}

.not-advisory-section .section-title::after,
.not-advisory-section h2::after {
    content: "";
    width: 100%;
    max-width: 395px;
    left: 0;
    transform: none;
    border-bottom-color: var(--clr-tan);
}

.not-advisory-section strong {
    color: var(--clr-tan);
    font-weight: 600;
}

/* Title structure overrides inside the cards */
.not-advisory-section .advisory-card-title,
.not-advisory-section .advisory-card h3 {
    line-height: 1.25;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.not-advisory-section .title-small {
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    font-family: var(--ff-body);
    color: #152C40;
    margin-bottom: 2px;
}

.not-advisory-section .title-large {
    display: block;
    font-size: 1.85rem;
    font-weight: 600;
    font-family: var(--ff-heading);
    color: #152C40;
}

/* Responsive adjustments for Who We Are Not Section */
@media (max-width: 1199.98px) {
    .not-advisory-section {
        padding: 80px 0;
        border-bottom-right-radius: 100px;
    }
}

@media (max-width: 767.98px) {
    .not-advisory-section {
        padding: 60px 0;
        border-bottom-right-radius: 90px;
    }
}

@media (max-width: 575.98px) {
    .not-advisory-section {
        border-bottom-right-radius: 50px;
    }
}


/* ==========================================
   About Page - Meet Your Companions Section
   ========================================== */
.companions-section {
    background-color: #F1EFE9;
    /* Same background color as page body / get-involved-section */
    padding: 95px 0 0;
}

.companions-section .section-title,
.companions-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.companions-section .section-title::after,
.companions-section h2::after {
    content: "";
    width: 100%;
    max-width: 485px;
    left: 50%;
    transform: translateX(-50%);
}

.companion-box {
    width: 100%;
}

.companion-img-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 30px;
    aspect-ratio: 3.2 / 4;
    /* Portrait ratio matching design */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.companion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.companion-placeholder {
    width: 100%;
    height: 100%;
    background-color: #C0C0C0;
    /* Medium-grey placeholder matching design */
    border-radius: 5px;
}

.companion-title,
.companion-box h3 {
    font-family: var(--ff-heading);
    font-size: 1.42rem;
    font-weight: 500;
    color: var(--clr-navy);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.companion-title::after,
.companion-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 580px;
    border-bottom: 1px solid var(--clr-tan);
}

.companion-text-block {
    max-width: 580px;
    margin: 0 auto;
}

.companion-text-block p {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--clr-navy);
    margin-bottom: 16px;
}

.companion-text-block p:first-of-type {
    font-weight: 500;
    font-size: 1.05rem;
}

.c-contact-content-sec {
    padding-top: 215px;
    padding-bottom: 100px;
}

/* Responsive styling for Companions Section */
@media (min-width:768px) {
    .hero-content h1 br {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .companions-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .companions-section {
        padding: 60px 0;
    }

    .companion-title,
    .companion-box h3 {
        font-size: 1.5rem;
    }
}



@media (max-width: 1720px) {
    .built-section {
        border-radius: 140px 0 0 0;
    }

    .built-card {
        padding: 40px 30px 60px 30px;
    }
}

/* ==========================================
   Responsive Tablet Queries (1199.98px & 991.98px)
   ========================================== */
@media (max-width: 1440px) {
    .logo-img {
        height: auto;
        width: 280px;
    }

    .nav-menu {
        gap: 20px;
    }

    .btn-pfc-tan {
        padding: 10px 14px;
    }

}

@media (max-width: 1199.98px) {

    /* Main Header */
    .nav-menu-wrapper {
        display: none !important;
    }

    .c-menu {
        display: flex;
        pointer-events:auto;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
    }

    .hero-left {
        width: 48%;
        padding-left: 40px;
        padding-right: 30px;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-right {
        width: 52%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .hero-text-lead,
    .hero-content p {
        font-size: 1.35rem;
        margin-bottom: 20px;
        line-height: 1.45;
    }

    .hero-img {
        border-bottom-left-radius: 120px;
    }

    /* Finance Section */
    .finance-section {
        padding-top: 140px;
        padding-bottom: 90px;
        margin-top: -80px;
    }

    .section-title,
    .finance-content h2,
    .what-we-do-card h2,
    .advisory-section h2,
    .built-section h2,
    .get-involved-section h2,
    .request-call-section h2,
    .faq-section h2 {
        font-size: 2.1rem;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .finance-text,
    .finance-content p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 20px !important;
    }

    .btn-pfc-tan {
        padding: 8px 24px;
        font-size: 0.95rem;
    }

    /* What We Do Section */
    .what-we-do-section {
        padding: 80px 0;
        background-position: right center;
        border-bottom-right-radius: 120px;
    }

    .what-we-do-card {
        padding: 40px;
    }

    .what-we-do-list,
    .what-we-do-card ul {
        margin-bottom: 36px;
    }

    .what-we-do-list li,
    .what-we-do-card ul li {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    /* Advisory Section */
    .advisory-section {
        padding: 80px 0;
    }

    .advisory-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
        padding: 50px 40px;
    }

    .advisory-card-title,
    .advisory-card h3 {
        width: 32%;
        margin-bottom: 0;
        font-size: 1.4rem;
    }

    .advisory-card-content {
        width: 68%;
    }

    .advisory-card-lead,
    .advisory-section:not(.about-advisory-section) .advisory-card-content p:first-of-type {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .advisory-card-text,
    .advisory-section:not(.about-advisory-section) .advisory-card-content p:last-of-type {
        font-size: 0.94rem;
    }

    /* Built Section */
    .built-section {
        padding: 80px 0;
        border-radius: 100px 0 0 0;
    }

    .built-cards-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
    }

    .built-card {
        flex-direction: row;
        gap: 50px;
        padding: 50px 40px;
        align-items: flex-start;
    }

    .built-card-title,
    .built-card h3 {
        width: 32%;
        margin-bottom: 0;
        font-size: 1.4rem;
    }

    .built-card-title br,
    .built-card h3 br {
        display: none;
    }

    .built-card-text,
    .built-card p {
        width: 68%;
        font-size: 0.94rem;
    }

    .get-involved-section {
        padding: 55px 0;
    }

    /* Footer Section */
    .footer-main {
        padding: 40px 40px;
    }

    .footer-top-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 40px;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer-logo-wrap {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .footer-links-container {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: 100%;
    }

    .footer-menu-upper,
    .footer-menu-lower {
        justify-content: flex-end;
        gap: 12px 24px;
    }

    .footer-badge-household {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }

    .footer-badge-household.footer-badge-item {
        justify-content: flex-start;
    }

    .footer-badge-seniors {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }

    .footer-badge-seniors.footer-badge-item {
        justify-content: flex-end;
    }

    .footer-disclaimer {
        font-size: 0.82rem;
    }

    /* Mobile Menu Overlay Styles */
    .c-menu-area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--clr-navy);
        z-index: 999;
        padding: 100px 24px 60px 24px;
        border-bottom-left-radius: 120px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .c-menu-area.active {
        transform: translateY(0);
        opacity:1;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: transparent;
        pointer-events:none;
    }

    body.menu-open .main-header .desktop-logo {
        display: none !important;
    }

    body.menu-open .main-header .mobile-logo {
        display: block !important;
    }
    body.menu-open .main-header .logo-img{
        pointer-events:auto;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-bottom: 40px;
        width: 100%;
    }

    .mobile-menu-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-links li a {
        font-family: var(--ff-body);
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--clr-white);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: var(--transition-smooth);
    }

    .mobile-menu-links li a:hover {
        color: var(--clr-tan);
    }

    .mobile-menu-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 280px;
    }

    .mobile-menu-buttons .btn-pfc-tan,
    .mobile-menu-buttons .btn-pfc-outline {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        border-radius: 5px;
    }

    .btn-pfc-outline {
        border: 2px solid var(--clr-white);
        color: var(--clr-white);
        background-color: transparent;
        text-transform: uppercase;
        transition: var(--transition-smooth);
    }

    .btn-pfc-outline:hover {
        background-color: var(--clr-white);
        color: var(--clr-navy);
    }
}

@media (max-width: 991.98px) {

    /* Hero Section */
    .hero-left {
        padding-left: 30px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .hero-text-lead,
    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .hero-img {
        border-bottom-left-radius: 90px;
    }

    /* Finance Section */
    .finance-section {
        padding-top: 100px;
        padding-bottom: 60px;
        margin-top: -60px;
    }

    .section-title,
    .finance-content h2,
    .what-we-do-card h2,
    .advisory-section h2,
    .built-section h2,
    .get-involved-section h2,
    .request-call-section h2,
    .faq-section h2 {
        font-size: 1.95rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .finance-text,
    .finance-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 16px !important;
    }

    /* What We Do Section */
    .what-we-do-section {
        padding: 60px 0;
        background-position: right center;
        border-bottom-right-radius: 90px;
    }

    .what-we-do-card {
        padding: 30px;
    }

    .what-we-do-list,
    .what-we-do-card ul {
        margin-bottom: 24px;
    }

    .what-we-do-list li,
    .what-we-do-card ul li {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    /* Advisory Section */
    .advisory-section {
        padding: 60px 0;
    }

    .advisory-card {
        display: flex;
        flex-direction: row;
        gap: 30px;
        padding: 40px 30px;
    }

    .advisory-card-title,
    .advisory-card h3 {
        width: 35%;
        margin-bottom: 0;
        font-size: 1.45rem;
    }

    .advisory-card-content {
        width: 65%;
    }

    .advisory-card-lead,
    .advisory-section:not(.about-advisory-section) .advisory-card-content p:first-of-type {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .advisory-card-text,
    .advisory-section:not(.about-advisory-section) .advisory-card-content p:last-of-type {
        font-size: 0.85rem;
    }

    /* Built Section */
    .built-section {
        padding: 60px 0;
        border-radius: 90px 0 0 0;
    }

    .built-cards-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .built-card {
        gap: 30px;
        padding: 40px 30px;
    }

    .built-card-title,
    .built-card h3 {
        width: 35%;
        font-size: 1.25rem;
    }

    .built-card-text,
    .built-card p {
        width: 65%;
        font-size: 0.88rem;
    }

    /* How We Work Content Section (Tablet) */
    .how-we-work-content {
        padding: 80px 0;
        margin-top: 0;
    }

    .hww-content-wrap {
        padding-left: 20px;
    }

    .hww-img {
        border-radius: 8px;
    }

    .hww-title,
    .hww-content-wrap h2 {
        font-size: 2.25rem !important;
        margin-bottom: 24px !important;
    }

    /* Footer Section */
    .footer-main {
        padding: 40px 30px;
    }

    .footer-top-row {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-menu-upper,
    .footer-menu-lower {
        gap: 8px 16px;
    }

    .footer-menu-upper li a,
    .footer-menu-lower li a {
        font-size: 0.95rem;
    }

    .footer-badge-text {
        font-size: 0.88rem;
    }

    .footer-disclaimer {
        font-size: 0.76rem;
    }

    /* Solutions Package Cards (Tablet) */
    .solutions-package-card {
        padding: 40px 30px;
    }

    .package-title,
    .package-title-wrap h3 {
        font-size: 1.8rem;
    }

    .package-subtitle,
    .package-title-wrap p {
        font-size: 1.1rem;
    }

    .package-price-badge {
        padding: 12px 24px;
        font-size: 1.1rem;
    }

    .package-divider {
        margin: 15px 0 25px 0;
        max-width: 100%;
    }

    .package-desc {
        margin-bottom: 30px;
    }

    .package-desc p {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .package-details-row {
        gap: 30px;
    }

    .package-image-col {
        width: 45%;
    }

    .package-services-col {
        width: 55%;
    }

    .services-list-title,
    .package-services-col h4 {
        font-size: 1.4rem;
        padding-bottom: 8px;
        margin-bottom: 12px;
        pointer-events: auto;
    }

    .services-list,
    .package-services-col ul {
        margin-top: 16px;
    }

    .services-list li,
    .package-services-col ul li {
        font-size: 1.05rem;
        padding-left: 18px;
        margin-bottom: 8px;
    }

    .services-list li::before,
    .package-services-col ul li::before {
        font-size: 1.1rem;
        top: 2px;
    }

    .services-list li.list-intro,
    .package-services-col ul li.list-intro {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .services-list li.list-category,
    .package-services-col ul li.list-category {
        margin-bottom: 16px;
    }

    .category-title {
        font-size: 1.15rem;
    }

    .services-list .sub-services-list li {
        font-size: 1.05rem;
        padding-left: 16px;
    }

    .services-list .sub-services-list li::before {
        font-size: 1rem;
        top: 2px;
    }

    .package-footnote {
        margin-top: 20px;
        font-size: 0.9rem;
    }

    .package-footer-banner {
        margin: 30px -30px -40px -30px;
        padding: 40px 30px;
    }

    .package-footer-banner-title,
    .package-footer-banner h4 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .package-footer-banner-row {
        gap: 20px;
    }

    .banner-col-title,
    .package-footer-banner-col h5 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .banner-col-text,
    .package-footer-banner-col p {
        font-size: 0.9rem;
    }

    .pipeline-box {
        padding: 20px 25px;
    }
}

/* ==========================================
   Responsive Mobile Queries (767.98px & 575.98px)
   ========================================== */

@media (max-width: 767.98px) {

    /* Announcement Bar */
    .announcement-bar {
        padding: 8px 0;
    }

    /* Main Header */
    .logo-img {
        height: auto;
    }

    .main-header {
        padding: 14px 0;
    }

    .main-header .desktop-logo {
        display: none !important;
    }

    .main-header .mobile-logo {
        display: block !important;
        width: 150px;
    }

    /* Hero Section */
    .hero-section {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        display: block;
        padding: 48px 30px 60px 30px;
    }

    .hero-img {
        height: 380px;
        width: 100%;
        object-fit: cover;
        border-bottom-left-radius: 120px;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 28px;
        padding-bottom: 16px;
    }

    .hero-text-lead,
    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    /* Finance Section */
    .finance-section {
        padding-top: 60px;
        padding-bottom: 60px;
        margin-top: 0;
    }

    .finance-content {
        text-align: center;
        margin-top: 40px;
    }

    .finance-section .section-title,
    .finance-content h2 {
        font-size: 2.25rem;
        line-height: 1.3;
        margin-bottom: 28px;
        padding-bottom: 16px;
    }

    .finance-section .section-title::after,
    .finance-content h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .finance-text,
    .finance-content p {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 20px !important;
    }

    .finance-section .btn-pfc-tan {
        margin-top: 12px;
    }

    /* What We Do Section */
    .what-we-do-section {
        background-image: none !important;
        background-color: var(--clr-cream);
        padding: 0 !important;
        border-bottom-right-radius: 0;
    }

    .what-we-do-section::before {
        content: "";
        display: block;
        width: 100%;
        height: 380px;
        background-image: url('images/what-we-do-img.webp');
        background-size: cover;
        background-position: center;
        border-top-right-radius: 120px;
    }

    .what-we-do-card {
        background-color: transparent !important;
        padding: 48px 24px 60px 24px !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        text-align: center;
    }

    .what-we-do-section .section-title,
    .what-we-do-card h2 {
        font-size: 2.25rem;
        margin-bottom: 28px;
        padding-bottom: 16px;
    }

    .what-we-do-section .section-title::after,
    .what-we-do-card h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 260px !important;
    }

    .what-we-do-list,
    .what-we-do-card ul {
        margin-bottom: 36px !important;
        text-align: center;
    }

    .what-we-do-list li,
    .what-we-do-card ul li {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .about-advisory-section {
        margin-top: 0;
    }

    .how-we-work-content {
        padding: 60px 0;
        margin-top: 0;
    }

    .hww-content-wrap {
        padding-left: 0;
        margin-top: 30px;
    }

    .hww-title,
    .hww-content-wrap h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    /* Advisory Section */
    .advisory-section {
        padding: 60px 0;
    }

    .advisory-section .section-title,
    .advisory-section h2 {
        font-size: 2.25rem;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }

    .advisory-card {
        flex-direction: column;
        gap: 20px;
        padding: 40px 30px;
    }

    .advisory-card-title,
    .advisory-card h3 {
        width: 100%;
        margin-bottom: 24px;
        font-size: 1.6rem;
    }

    .advisory-card-content {
        width: 100%;
    }

    /* Built Section */
    .built-section {
        padding: 60px 0;
        border-radius: 50px 0 0 0 !important;
    }

    .built-section .section-title,
    .built-section h2 {
        font-size: 2.25rem;
        margin-bottom: 32px;
    }

    .built-card {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 40px 30px !important;
    }

    .built-card-title,
    .built-card h3 {
        width: 100% !important;
        margin-bottom: 20px !important;
        font-size: 1.6rem !important;
    }

    .built-card-title br,
    .built-card h3 br {
        display: block !important;
    }

    .built-card-text,
    .built-card p {
        width: 100% !important;
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
    }

    /* Get us Involved Section */
    .get-involved-section {
        padding: 60px 0;
    }

    .get-involved-section .section-title,
    .get-involved-section h2 {
        font-size: 2.25rem;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .get-involved-text,
    .get-involved-section p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .get-involved-text br,
    .get-involved-section p br {
        display: none;
    }

    .get-involved-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .get-involved-buttons .btn-pfc-tan {
        text-align: center;
    }

    /* Footer Section */
    .footer-main {
        padding: 40px 24px;
    }

    .footer-top-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-logo-wrap {
        order: 1;
        justify-self: unset;
        grid-column: unset;
        grid-row: unset;
    }

    .footer-links-container {
        order: 2;
        width: 100%;
        justify-self: unset;
        grid-column: unset;
        grid-row: unset;
    }

    .footer-menu-upper,
    .footer-menu-lower {
        justify-content: center;
        gap: 10px 24px;
        flex-wrap: wrap;
    }

    .footer-menu-upper {
        margin-bottom: 12px;
    }

    .footer-badge-household,
    .footer-badge-seniors {
        order: 3;
        grid-column: unset;
        grid-row: unset;
        justify-self: unset;
        width: 100%;
    }

    .footer-badge-household.footer-badge-item,
    .footer-badge-seniors.footer-badge-item {
        justify-content: center;
    }

    .footer-disclaimer {
        display: none;
    }

    /* Solutions Package Cards (Mobile) */
    .solutions-package-card {
        padding: 40px 24px;
    }

    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .package-price-badge {
        align-self: flex-start;
    }

    .package-title,
    .package-title-wrap h3 {
        font-size: 1.6rem;
    }

    .package-subtitle,
    .package-title-wrap p {
        font-size: 1rem;
    }

    .package-desc p {
        font-size: 1rem;
    }

    .package-details-row {
        flex-direction: column;
        gap: 24px;
    }

    .package-image-col {
        width: 100%;
    }

    .package-services-col {
        width: 100%;
    }

    .services-list-title,
    .package-services-col h4 {
        font-size: 1.3rem;
        border-bottom: 1px solid #BF9B77;
        padding-bottom: 12px;
        margin-bottom: 16px;
        cursor: pointer;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        user-select: none;
    }

    .services-list-title::after,
    .package-services-col h4::after {
        content: '+';
        position: static;
        width: auto;
        height: auto;
        border-bottom: none;
        font-family: var(--ff-body);
        font-weight: 300;
        font-size: 1.5rem;
        line-height: 1;
        color: var(--clr-navy);
        transition: transform 0.2s ease;
    }

    .services-list-title.active::after,
    .package-services-col h4.active::after {
        content: '\2212';
        /* Unicode minus sign */
    }

    .services-list,
    .package-services-col ul {
        display: none;
        margin-top: 16px;
    }

    .services-list li,
    .package-services-col ul li {
        font-size: 1rem;
    }

    .services-list li.list-intro,
    .package-services-col ul li.list-intro {
        font-size: 1.1rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .services-list .sub-services-list li {
        font-size: 1rem;
    }

    /* Mobile Price Badge */
    .package-price-badge-mobile {
        background-color: #F1EFE9;
        border-radius: 12px;
        padding: 18px 36px;
        font-family: var(--ff-body);
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--clr-navy);
        text-align: center;
        margin-top: 24px;
        margin-bottom: 12px;
        display: block;
    }

    .package-price-badge-mobile.price-badge-estimated {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 12px 36px;
        gap: 2px;
    }

    .package-price-badge-mobile .price-badge-label {
        font-size: 0.85rem;
        color: var(--clr-navy);
        opacity: 0.7;
    }

    .package-price-badge-mobile .price-badge-value {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .package-footer-banner {
        margin: 30px -24px -40px -24px;
        padding: 40px 24px;
    }

    .package-footer-banner-row {
        flex-direction: column;
        gap: 24px;
    }

    .banner-col-title,
    .package-footer-banner-col h5 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .banner-col-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {

    /* Announcement Bar */
    .announcement-bar {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .announcement-icon {
        height: 14px;
    }

    /* Hero Section */
    .hero-left {
        padding: 40px 24px 48px 24px;
    }

    .hero-img {
        height: 320px;
        border-bottom-left-radius: 100px;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .hero-text-lead,
    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    /* Finance Section */
    .finance-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .finance-content {
        margin-top: 32px;
    }

    .finance-section .section-title,
    .finance-content h2 {
        font-size: 1.85rem;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .finance-text,
    .finance-content p {
        font-size: 1.05rem;
        margin-bottom: 16px !important;
    }

    /* What We Do Section */
    .what-we-do-section::before {
        height: 320px;
        border-top-right-radius: 100px;
    }

    .what-we-do-card {
        padding: 40px 20px 48px 20px !important;
    }

    .what-we-do-section .section-title,
    .what-we-do-card h2 {
        font-size: 1.85rem;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .what-we-do-section .section-title::after,
    .what-we-do-card h2::after {
        width: 200px !important;
    }

    .what-we-do-list li,
    .what-we-do-card ul li {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    /* How We Work Content Section (XS Mobile) */
    .how-we-work-content {
        padding: 50px 0;
    }

    .how-we-work-content.solutions-page-hww {
        padding-bottom: 45px;
    }

    .hww-process-section,
    .hww-plans-section {
        padding: 50px 0;
    }

    /* Advisory Section */
    .advisory-section {
        padding: 48px 0;
    }

    .advisory-section .section-title,
    .advisory-section h2 {
        font-size: 1.85rem;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .advisory-card {
        padding: 32px 20px;
        gap: 16px;
    }

    .advisory-card-title,
    .advisory-card h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    /* Built Section */
    .built-section {
        padding: 48px 0;
        border-radius: 40px 0 0 0 !important;
    }

    .built-section .section-title,
    .built-section h2 {
        font-size: 1.85rem;
        margin-bottom: 24px;
    }

    .built-card {
        padding: 32px 20px !important;
        gap: 12px !important;
    }

    .built-card-title,
    .built-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 16px !important;
    }

    .built-card-text,
    .built-card p {
        font-size: 1rem !important;
    }

    /* Get us Involved Section */
    .get-involved-section {
        padding: 48px 0;
    }

    .get-involved-section .section-title,
    .get-involved-section h2 {
        font-size: 1.85rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .get-involved-text,
    .get-involved-section p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    /* Footer Section */
    .site-footer .custom-container {
        padding: 0;
    }

    .footer-main {
        padding: 32px 16px;
    }

    .footer-top-row {
        gap: 15px;
        margin-bottom: 24px;
    }

    .footer-menu-upper li a,
    .footer-menu-lower li a {
        font-size: 0.9rem;
    }

    .footer-badge-text {
        font-size: 0.85rem;
    }

    /* Solutions Package Cards (XS Mobile) */
    .solutions-package-card {
        padding: 30px 16px;
    }

    .package-footer-banner {
        margin: 25px -16px -30px -16px;
        padding: 30px 16px;
    }

    .package-footer-banner-title {
        font-size: 1.45rem;
    }
}


/* ==========================================
   Contact Page - Request a Call Section
   ========================================== */
.request-call-wrapper {
    background-color: #F1EFE9;
    padding-bottom: 80px;
}

.request-call-section {
    background-color: #152C40;
    /* Dark navy */
    padding: 120px 0;
    border-bottom-left-radius: 180px;
    /* Curve matching project aesthetic */
    position: relative;
    overflow: hidden;
}

.request-call-desc,
.request-call-section p {
    font-family: var(--ff-body);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #F1EFE9;
    margin-top: 30px;
}

/* Form Card Placeholder Container (No Form HTML as requested) */
.request-call-card-placeholder {
    background-color: #F2EFEA;
    /* Light cream beige */
    border-radius: 15px;
    min-height: 550px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Responsive Media Query Breakpoints
   ========================================== */

/* Tablet/Desktop intermediate (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
    .request-call-section {
        padding: 100px 0;
        border-bottom-left-radius: 140px;
    }

    .request-call-card-placeholder {
        min-height: 520px;
    }
}

/* Medium devices (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .request-call-section {
        padding: 80px 0;
        border-bottom-left-radius: 100px;
    }

    .request-call-desc,
    .request-call-section p {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .request-call-card-placeholder {
        min-height: 500px;
    }
}

/* Small devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .request-call-section {
        padding: 60px 0;
        border-bottom-left-radius: 70px;
    }

    .request-call-card-placeholder {
        min-height: 480px;
    }
}

/* Extra small devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .request-call-section {
        border-bottom-left-radius: 40px;
    }

    .request-call-card-placeholder {
        min-height: 450px;
    }
}


/* ==========================================
   Common Reusable Inner Body Area
   ========================================== */
.inner-body-area {
    background-color: #F1EFE9;
    padding: 230px 0 2px;
    margin-top: -80px;
    z-index: 1;
    position: relative;
}

/* ==========================================
   FAQ Page Accordion Styles
   ========================================== */
.faq-content-wrap {
    max-width: 1140px;
    margin: 0 auto;
}

.faq-section .section-title::after,
.faq-section h2::after {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 704px;
}

.c-accord-panel {
    margin-bottom: 20px;
}

.c-accord-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #BF9B77;
    transition: all 0.3s ease;
}

.c-accord-panel__header h4 {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin: 0;
    padding-right: 20px;
}

.c-accord-panel__header::after {
    content: '+';
    font-family: var(--ff-body);
    font-size: 1.75rem;
    color: var(--clr-navy);
    font-weight: 300;
    transition: transform 0.2s ease;
}

.c-accord-panel__header.active::after {
    content: '−';
    /* Unicode minus sign */
}

.c-accord-panel__body {
    display: none;
    padding: 20px 0;
}

.c-accord-panel__content p {
    font-family: var(--ff-body);
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--clr-navy);
    margin: 0;
}

.faq-link {
    color: var(--clr-navy);
    text-decoration: underline;
    font-weight: 500;
}

.faq-link:hover {
    color: var(--clr-tan);
}

/* Responsive styles for Reusable Inner Body and FAQ */
@media (max-width: 1199.98px) {
    .inner-body-area {
        padding: 200px 0 150px;
    }

    .c-accord-panel__header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .inner-body-area {
        padding: 40px 0;
        margin-top: 0;
    }

    .c-accord-panel__header h4 {
        font-size: 1.34rem;
    }

    .c-accord-panel__content p {
        font-size: 18px;
    }
}


/* ==========================================
   Compliance Page Styles
   ========================================== */
.compliance-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.compliance-block {
    margin-bottom: 40px;
}

.compliance-block:last-child {
    margin-bottom: 0;
}

.compliance-header {
    border-bottom: 1px solid #BF9B77;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.compliance-block h2 {
    font-family: 'Crimson Pro', serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.4;
    text-transform: capitalize;
    color: #152C40;
    margin-bottom: 0;
    margin-top: 0;
}

.compliance-block h3 {
    font-weight: 400;
    font-size: 30px;
    font-family: var(--ff-body);
    line-height: 1.4;
    text-transform: capitalize;
    color: #152C40;
    margin: 0;
}

.compliance-content {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #152C40;
}

.compliance-content p {
    margin-bottom: 30px;
}

.compliance-content p strong {
    font-weight: 500;
}

.compliance-content p:last-child {
    margin-bottom: 0;
}

.compliance-content ul {
    list-style-type: disc;
    padding-left: 8px;
    margin-bottom: 20px;
}

.compliance-content li {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #152C40;
    display: block;
    margin-bottom: 4px;
    position: relative;
    padding-left: 24px;
}

.compliance-content li::before {
    content: "•";
    position: absolute;
    left: 0px;
    top: 4px;
    color: var(--clr-navy);
    font-size: 1.25rem;
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    .compliance-content li {
        font-size: 18px;
    }
}



/* Responsive compliance scaling styles */
@media (max-width: 991.98px) {
    .compliance-block h2 {
        font-size: 24px;
    }

    .compliance-block h3 {
        font-size: 20px;
    }

    .compliance-content {
        font-size: 18px;
    }

    .compliance-block {
        margin-bottom: 55px;
    }
}

@media (max-width: 767.98px) {
    .compliance-block h2 {
        font-size: 24px;
    }

    .compliance-block h3 {
        font-size: 20px;
    }

    .compliance-content {
        font-size: 18px;
    }

    .compliance-block {
        margin-bottom: 40px;
    }

    .compliance-header {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
}


/* ==========================================
   Inner Banner Responsive Overrides
   ========================================== */
@media (max-width: 991.98px) {
    .inner-banner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .inner-banner-left {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .inner-banner-right {
        width: 100%;
        height: 320px;
    }

    .inner-banner-img {
        border-radius: 0 0 0 100px;
    }
}

@media (max-width: 767.98px) {
    .inner-banner-left {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .inner-banner-title,
    .inner-banner-content h1 {
        font-family: 'Crimson Pro', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 40px;
        line-height: 1.2;
        color: #152C40;
    }

    .inner-banner-right {
        height: 250px;
    }

    .inner-banner-img {
        border-radius: 0 0 0 70px;
    }

    .section-title,
    .finance-content h2,
    .what-we-do-card h2,
    .advisory-section h2,
    .built-section h2,
    .get-involved-section h2,
    .request-call-section h2,
    .faq-section h2,
    .hww-process-section h2,
    .hww-plans-section h2,
    .hww-content-wrap h2,
    .solutions-details-section h2,
    .not-advisory-section h2,
    .companions-section h2 {
        font-size: 2.12rem;
    }

    .section-title::after,
    .finance-content h2::after,
    .what-we-do-card h2::after,
    .advisory-section h2::after,
    .built-section h2::after,
    .get-involved-section h2::after,
    .request-call-section h2::after,
    .faq-section h2::after,
    .hww-process-section h2::after,
    .hww-plans-section h2::after,
    .hww-content-wrap h2::after,
    .solutions-details-section h2::after,
    .not-advisory-section h2::after,
    .companions-section h2::after {
        width: 100% !important;
    }

}

@media (min-width: 768px) {
    .services-list {
        display: block !important;
    }
}

/* ==========================================
   Gravity Forms Custom Styling
   ========================================== */
.request-call-card-placeholder {
    background-color: #F2EFEA !important;
    border-radius: 15px !important;
    padding: 50px !important;
    min-height: auto !important;
}

.request-call-card-placeholder img {
    display: none !important;
}

.request-call-card-placeholder .gform_wrapper {
    margin: 0 !important;
    max-width: 100% !important;
}

.request-call-card-placeholder .gform_fields {
    display: flex !important;
    flex-wrap: wrap !important;
    row-gap: 35px !important;
    column-gap: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* Each field container */
.request-call-card-placeholder .gfield {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.request-call-card-placeholder .gform_wrapper fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Legends and Radio section headers */
.request-call-card-placeholder .gform_fields legend.gfield_label {
    font-family: var(--ff-body) !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    color: var(--clr-navy) !important;
    margin-bottom: 20px !important;
    display: block !important;
    width: 100% !important;
    border: none !important;
    padding: 0 !important;
}

.request-call-card-placeholder .gform_fields #field_1_3 legend.gfield_label {
    margin-bottom: 20px !important;
}

/* Regular input labels */
.request-call-card-placeholder .gform_fields .gfield:not(.gfield--type-radio) .gfield_label {
    font-family: var(--ff-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--clr-navy) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Hide required text "(Required)", keep asterisk */
.request-call-card-placeholder .gfield_required_text {
    display: none !important;
}

.request-call-card-placeholder .gfield_required::after {
    content: '*' !important;
    color: var(--clr-navy) !important;
    font-family: var(--ff-body) !important;
}

.request-call-card-placeholder legend .gfield_required {
    display: none !important;
}

/* Radio button horizontal container */
.request-call-card-placeholder .gfield_radio {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px 22px !important;
    align-items: center !important;
    width: 100% !important;
    flex-direction: row !important;
}

.request-call-card-placeholder .gchoice {
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
}

/* Custom Styled Radio Button */
.request-call-card-placeholder .gchoice input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: 1px solid transparent !important;
    margin: 0 12px 0 0 !important;
    cursor: pointer !important;
    position: relative !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.request-call-card-placeholder .gchoice input[type="radio"]:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: var(--clr-tan) !important;
}

.request-call-card-placeholder .gchoice label {
    font-family: var(--ff-body) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--clr-navy) !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 24px !important;
}

/* Inputs layout columns (Full Name 50%, Phone 50%, Email 50%) */
.request-call-card-placeholder #field_1_5 {
    width: calc(50% - 15px) !important;
}

.request-call-card-placeholder #field_1_6 {
    width: calc(50% - 15px) !important;
}

.request-call-card-placeholder #field_1_7 {
    width: calc(50% - 15px) !important;
}

/* Text, Tel, and Email Input field styling */
.request-call-card-placeholder .gform_fields input[type="text"],
.request-call-card-placeholder .gform_fields input[type="tel"],
.request-call-card-placeholder .gform_fields input[type="email"] {
    width: 100% !important;
    height: 47px !important;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 0 20px !important;
    font-family: var(--ff-body) !important;
    font-size: 18px !important;
    color: var(--clr-navy) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: var(--transition-smooth) !important;
}

.request-call-card-placeholder .gform_fields input[type="text"]:focus,
.request-call-card-placeholder .gform_fields input[type="tel"]:focus,
.request-call-card-placeholder .gform_fields input[type="email"]:focus {
    box-shadow: 0 0 0 2px var(--clr-tan) !important;
}

/* Specific time inline placement logic */
.request-call-card-placeholder .gchoice_1_3_4 {
    display: inline-flex !important;
    align-items: center !important;
    flex-grow: 1 !important;
}

.request-call-card-placeholder .gchoice_1_3_4:has(#field_1_4[style*="display: none"]),
.request-call-card-placeholder .gchoice_1_3_4:has(#field_1_4[style*="display:none"]) {
    display: none !important;
}

.request-call-card-placeholder #field_1_4 {
    display: none !important;
}

.request-call-card-placeholder #field_1_4[style*="display: block"],
.request-call-card-placeholder #field_1_4[style*="display: inline-block"],
.request-call-card-placeholder #field_1_4:not([style*="display: none"]) {
    display: inline-flex !important;
    width: 100% !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
}

.request-call-card-placeholder #field_1_4 .ginput_container_text {
    width: 100% !important;
}

.request-call-card-placeholder #field_1_4 .gfield_label {
    display: none !important;
}

/* Footer & Submit Button styling */
.request-call-card-placeholder .gform_footer {
    width: calc(50% - 15px) !important;
    margin-top: auto !important;
    /* Align with input box */
    padding: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    position: relative !important;
}

#gform_ajax_spinner_1 {
    position: absolute !important;
    right: -35px !important;
}

.request-call-card-placeholder .gform_footer .gform_button {
    width: 100% !important;
    display: block !important;
}

.request-call-card-placeholder .gform_button {
    display: inline-block !important;
    font-family: var(--ff-body) !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: var(--clr-navy) !important;
    background-color: var(--clr-tan) !important;
    border: 2px solid var(--clr-tan) !important;
    padding: 12px 32px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    max-width: 270px !important;
}

.c-required-text {
    font-family: 'Outfit' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 150% !important;
    color: #C21000 !important;
}

@media (max-width: 991.98px) {
    .request-call-card-placeholder .gform_button {
        max-width: 260px !important;
    }
}

.request-call-card-placeholder .gform_button:hover {
    background-color: #D8B99C !important;
    color: #152C40 !important;
    border-color: #D8B99C !important;
    text-decoration: none !important;
}

/* Validation styling: Hide all error text / banners, only show red borders on invalid inputs */
.request-call-card-placeholder .gfield_validation_message,
.request-call-card-placeholder .validation_message,
.request-call-card-placeholder .gform_validation_errors,
.request-call-card-placeholder .gform_submission_error,
.request-call-card-placeholder .gform_validation_container,
.request-call-card-placeholder .gfield_description.validation_message {
    display: none !important;
}

.request-call-card-placeholder .gfield_error input[type="text"],
.request-call-card-placeholder .gfield_error input[type="tel"],
.request-call-card-placeholder .gfield_error input[type="email"] {
    border: 1px solid #FF0000 !important;
}

.request-call-card-placeholder .gfield_error input[type="text"]:focus,
.request-call-card-placeholder .gfield_error input[type="tel"]:focus,
.request-call-card-placeholder .gfield_error input[type="email"]:focus {
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2) !important;
}

.request-call-card-placeholder .gfield_error .gchoice input[type="radio"] {
    border: 1px solid #FF0000 !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .request-call-card-placeholder {
        padding: 30px 20px !important;
    }

    .request-call-card-placeholder .gform_fields {
        row-gap: 20px !important;
    }

    .request-call-card-placeholder .gform_fields legend.gfield_label {
        font-size: 22px !important;
    }

    .request-call-card-placeholder #field_1_5,
    .request-call-card-placeholder #field_1_6,
    .request-call-card-placeholder #field_1_7 {
        width: 100% !important;
    }

    .request-call-card-placeholder .gform_footer {
        width: 100% !important;
        margin-top: 20px !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }

    #gform_ajax_spinner_1 {
        position: static !important;
        transform: none !important;
        margin-left: 10px !important;
    }

    .request-call-card-placeholder #field_1_4[style*="display: block"],
    .request-call-card-placeholder #field_1_4[style*="display: inline-block"],
    .request-call-card-placeholder #field_1_4:not([style*="display: none"]) {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 10px !important;
    }

    .request-call-card-placeholder .gchoice {
        width: 100% !important;
    }
}

/* Hide specific Gravity Forms choice: Evening (After 5:00) */
.gchoice_1_3_2 {
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 767.98px) {
    .gchoice_1_3_2 {
        display: none !important;
    }
}