:root {
    --navy: #102A43;
    --navy-2: #173B5C;
    --gold: #C49A4A;
    --gold-dark: #9C7530;
    --ivory: #FAF8F3;
    --paper: #FFFFFF;
    --slate: #334E68;
    --muted: #6B7C8F;
    --border: #E6E1D8;
    --shadow: 0 18px 45px rgba(16,42,67,.10);
    --radius: 18px;
    --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--slate);
    background: var(--paper);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin-top: 0; }
h1, h2, h3, h4 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--navy);
    line-height: 1.1;
    margin: 0 0 .65em;
}
h1 { font-size: clamp(2.5rem, 5vw, 5.2rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); letter-spacing: -.03em; }
h3 { font-size: 1.35rem; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 840px; }
.center { text-align: center; }
.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: var(--navy);
    color: white;
    padding: .7rem 1rem;
    z-index: 10;
}
.skip-link:focus { left: 8px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-brand { display: inline-flex; flex-direction: column; gap: 0; }
.custom-logo { max-height: 58px; width: auto; }
.brand-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--navy);
}
.brand-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .68rem;
    font-weight: 700;
}
.primary-nav { display: flex; align-items: center; gap: 24px; }
.menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 24px; }
.menu a { font-weight: 600; font-size: .94rem; color: var(--navy); }
.menu a:hover { color: var(--gold-dark); }
.nav-cta, .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: .85rem 1.05rem;
    font-weight: 700;
    font-size: .92rem;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.nav-cta, .btn-primary {
    background: var(--navy);
    color: white;
}
.btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: white;
}
.btn-gold {
    background: var(--gold);
    color: white;
}
.nav-cta:hover, .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16,42,67,.16);
}
.menu-toggle { display: none; }

.hero {
    background:
        linear-gradient(90deg, rgba(250,248,243,1) 0%, rgba(250,248,243,.92) 42%, rgba(250,248,243,.2) 100%),
        radial-gradient(circle at 75% 30%, rgba(196,154,74,.16), transparent 32%);
    padding: 78px 0 70px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.eyebrow {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-text { font-size: 1.2rem; max-width: 640px; color: var(--slate); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-panel {
    min-height: 420px;
    border-radius: 28px;
    background:
        linear-gradient(rgba(16,42,67,.08), rgba(16,42,67,.08)),
        url('../images/french-village-placeholder.svg') center/cover no-repeat;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.hero-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: min(320px, calc(100% - 48px));
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.hero-card strong { display: block; color: var(--navy); }

.section { padding: 78px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.split { display: flex; justify-content: space-between; gap: 24px; align-items: end; }
.split a { color: var(--navy); font-weight: 800; }

.icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.icon-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    background: white;
    min-height: 150px;
    display: grid;
    place-items: center;
    gap: 10px;
}
.icon-card:hover { box-shadow: var(--shadow); }
.line-icon { color: var(--gold); font-size: 2rem; line-height: 1; }
.icon-card strong { color: var(--navy); font-size: .95rem; line-height: 1.3; }

.trust-strip {
    background: var(--navy);
    color: white;
    padding: 26px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.trust-grid div { border-left: 1px solid rgba(255,255,255,.18); padding-left: 18px; }
.trust-grid strong { display: block; color: white; }
.trust-grid span { color: rgba(255,255,255,.76); font-size: .92rem; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.content-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 22px rgba(16,42,67,.05);
}
.content-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .15s ease; }
.content-card img, .placeholder-image { width: 100%; aspect-ratio: 4 / 2.4; object-fit: cover; background: linear-gradient(135deg, #DFD3BE, #F5EFE3); }
.card-body { padding: 20px; }
.card-body h2, .card-body h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.32rem; }
.card-body p { color: var(--navy); font-size: .95rem; }
.card-link { color: var(--navy); font-weight: 800; font-size: .92rem; }

.process-section { background: var(--ivory); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.process-grid div {
    background: white;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius);
}
.process-grid span {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: white;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}
.process-grid strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }

.cta-band {
    background: linear-gradient(135deg, var(--ivory), #FFF);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-inner h2 { font-size: clamp(1.6rem, 2.5vw, 2.3rem); margin-bottom: 8px; }

.testimonial-section {
    background: var(--navy);
    color: white;
    text-align: center;
}
.testimonial-section h2 { color: white; }
blockquote { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
cite { display: block; margin-top: 18px; color: var(--gold); font-family: Inter, sans-serif; font-size: .95rem; font-style: normal; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--navy);
    font-weight: 800;
}
.faq-item div { padding: 0 20px 20px; color: var(--slate); }

.page-hero {
    background: var(--ivory);
    padding: 66px 0;
    border-bottom: 1px solid var(--border);
}
.page-hero.compact h1 { max-width: 900px; font-size: clamp(2.4rem, 4vw, 4.4rem); }
.page-hero p { max-width: 760px; font-size: 1.12rem; color: var(--slate); }
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 22px;
}
.breadcrumbs a { color: var(--gold-dark); font-weight: 700; }

.prose {
    font-size: 1.08rem;
}
.prose > * { max-width: 780px; }
.prose h2 { margin-top: 2.2rem; }
.prose a { color: var(--gold-dark); text-decoration: underline; font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.featured-image-wrap { margin-top: 34px; }
.featured-image-wrap img { border-radius: 24px; box-shadow: var(--shadow); }

.knowledge-search {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.knowledge-search input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: 1rem;
}
.knowledge-search button {
    border: none;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    padding: 0 1.4rem;
    font-weight: 800;
}
.topic-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}
.topic-pills a {
    border: 1px solid var(--border);
    background: white;
    padding: .55rem .8rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--navy);
}

.site-footer {
    background: #071C2E;
    color: rgba(255,255,255,.78);
    padding: 58px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1.2fr;
    gap: 48px;
}

.footer-guides__all {
    margin-top: 8px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
}

.footer-guides__all:hover {
    text-decoration: underline;
}
.footer-guides a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-brand {
    font-family: "Playfair Display", Georgia, serif;
    color: white;
    font-size: 1.6rem;
    line-height: 1.05;
    margin: 0 0 10px 0;
}
.footer-heading {
    color: white;
    font-family: Inter, sans-serif;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 8px; }
.site-footer a { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: .88rem;
}

.screen-reader-text {
    position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

@media (max-width: 980px) {
    .menu-toggle { display: inline-flex; background: var(--navy); color: white; border: none; border-radius: 8px; padding: .7rem .9rem; font-weight: 800; }
    .primary-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }
    .primary-nav.is-open { display: flex; }
    .menu { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-grid, .footer-grid { grid-template-columns: 1fr; }
    .icon-grid, .card-grid, .process-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner, .footer-bottom, .split { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
    .container { width: min(100% - 28px, var(--container)); }
    .hero { padding: 48px 0; }
    .hero-panel { min-height: 280px; }
    .icon-grid, .card-grid, .process-grid, .trust-grid { grid-template-columns: 1fr; }
    .knowledge-search { flex-direction: column; }
    .knowledge-search button { padding: 1rem; }
}


.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.guide-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.guide-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--ivory);
    padding: 22px;
}

.sidebar-box strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.sidebar-box p {
    color: var(--muted);
    font-size: .95rem;
}

.testimonial-list {
    display: grid;
    gap: 22px;
}

.testimonial-card {
    background: var(--ivory);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: left;
}

.testimonial-card cite {
    color: var(--gold-dark);
}

@media (max-width: 980px) {
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .guide-sidebar {
        position: static;
    }

    .card-grid.three {
        grid-template-columns: 1fr;
    }
}


/* Gutenberg block wrappers */
.fps-block {
    margin-block: 0;
}

.fps-block-hero {
    background:
        linear-gradient(90deg, rgba(250,248,243,1) 0%, rgba(250,248,243,.92) 42%, rgba(250,248,243,.2) 100%),
        radial-gradient(circle at 75% 30%, rgba(196,154,74,.16), transparent 32%);
    padding: 78px 0 70px;
}

.fps-block-service-grid .icon-grid,
.fps-block-process .process-grid {
    margin-top: 28px;
}

.fps-block-guide-grid .card-grid {
    margin-top: 28px;
}

.fps-block-faq .faq-list {
    max-width: 840px;
    margin-inline: auto;
}


/* v1.3 block design controls */
.hero-image-left .hero-grid .hero-copy {
    order: 2;
}
.hero-image-left .hero-grid .hero-panel {
    order: 1;
}
.hero-centered .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
}
.hero-centered .hero-copy {
    max-width: 860px;
    margin-inline: auto;
}
.hero-centered .button-row {
    justify-content: center;
}
.hero-bg-white {
    background: #fff;
}
.hero-bg-navy {
    background: var(--navy);
}
.hero-bg-navy h1,
.hero-bg-navy .hero-text {
    color: #fff;
}
.hero-bg-navy .eyebrow {
    color: var(--gold);
}

.service-grid-style-ivory .icon-card {
    background: var(--ivory);
}
.service-grid-style-outlined .icon-card {
    background: transparent;
    box-shadow: none;
}

.process-bg-white {
    background: #fff;
}
.cta-style-navy {
    background: var(--navy);
    color: #fff;
}
.cta-style-navy h2,
.cta-style-navy p {
    color: #fff;
}
.cta-style-card {
    background: #fff;
    border: 0;
}
.cta-style-card .cta-inner {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

@media (max-width: 980px) {
    .fps-block-service-grid .icon-grid,
    .fps-block-guide-grid .card-grid,
    .fps-block-process .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 620px) {
    .fps-block-service-grid .icon-grid,
    .fps-block-guide-grid .card-grid,
    .fps-block-process .process-grid {
        grid-template-columns: 1fr !important;
    }
}


/* v1.4 finalised hero banner */
.fps-block-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.fps-block-hero-banner .container {
    position: relative;
    z-index: 2;
}

.fps-hero-content h1 {
    margin-bottom: 24px;
    letter-spacing: -0.045em;
}

.fps-hero-content .hero-text {
    max-width: 720px;
    margin-bottom: 30px;
}

.fps-block-hero-banner .eyebrow {
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

/* v1.4 service card media */
.service-card-image {
    object-fit: contain;
    margin-bottom: 18px;
}

/* Header consultation CTA */
.nav-cta {
    background: #C49A4A;
    color: #ffffff;
    border: 2px solid #C49A4A;
}

.nav-cta:hover {
    background: #b38d42;
    border-color: #b38d42;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(196,154,74,.35);
}

@media (max-width: 760px) {
    .fps-block-hero-banner {
        min-height: 440px;
    }

    .fps-hero-content h1 {
        font-size: clamp(2.2rem, 11vw, 3.8rem) !important;
    }
}
.footer-contact {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-color);
}

.footer-contact strong {
    display: block;
    margin-bottom: .5rem;
    color: var(--heading-color);
    font-size: 1.05rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.fps-call-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.fps-call-modal.is-open {
    display: block;
}

.fps-call-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 24, 31, 0.72);
}

.fps-call-modal__box {
    position: relative;
    width: min(92vw, 560px);
    max-height: 88vh;
    overflow-y: auto;
    margin: 6vh auto;
    background: #fff;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.fps-call-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: 0;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
}

.fps-call-modal label {
    display: block;
    margin-top: 16px;
    font-weight: 600;
}

.fps-call-modal input,
.fps-call-modal textarea,
.fps-call-modal select {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    font: inherit;
}

.fps-call-modal select {
    min-height: 120px;
}

.fps-call-modal__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

body.fps-modal-open {
    overflow: hidden;
}

.fps-message-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.fps-how-i-work__image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}

.fps-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.fps-modal.is-open {
    display: block;
}

.fps-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, 0.65);
}

.fps-modal__box {
    position: relative;
    z-index: 2;
    width: min(92%, 520px);
    margin: 8vh auto;
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.fps-modal__box h2 {
    margin-top: 0;
    color: #06213f;
}

.fps-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: transparent;
    font-size: 2rem;
    cursor: pointer;
    color: #06213f;
}

.fps-modal label {
    display: block;
    margin: 1rem 0;
    font-weight: 600;
    color: #06213f;
}

.fps-modal input[type="text"],
.fps-modal input[type="email"] {
    width: 100%;
    margin-top: .35rem;
    padding: .8rem;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    font-size: 1rem;
}

.fps-checkbox {
    display: flex !important;
    gap: .6rem;
    align-items: flex-start;
    font-weight: 400 !important;
    font-size: .9rem;
}

.fps-checkbox input {
    margin-top: .2rem;
}

.fps-modal__submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: .9rem 1.2rem;
    background: #06213f;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.fps-modal__submit:hover {
    background: #0a3768;
}

.fps-modal__message {
    margin-top: 1rem;
    font-weight: 600;
    color: #06213f;
}

.fps-page-wrap{
    padding:80px 24px;
    background:#fff;
}

.fps-guidance-page{
    max-width:900px;
    margin:0 auto;
}

.fps-guidance-page h1{
    text-align:center;
    color:#06213f;
    font-size:clamp(2.2rem, 5vw, 3.8rem);
    line-height:1.1;
    margin:0 0 24px;
}

.fps-guidance-page h2{
    color:#06213f;
    margin-top:54px;
    margin-bottom:16px;
    font-size:clamp(1.5rem, 3vw, 2.2rem);
}

.fps-guidance-page p{
    font-size:1.08rem;
    line-height:1.8;
    color:#344054;
    margin-bottom:20px;
}

.fps-guidance-page ul{
    margin:24px 0;
    padding-left:1.4rem;
}

.fps-guidance-page li{
    margin-bottom:10px;
    font-size:1.05rem;
    line-height:1.7;
}

.fps-guidance-page > p:first-of-type{
    text-align:center;
    font-size:1.2rem;
    color:#475467;
    max-width:760px;
    margin:0 auto 42px;
}

.fps-experience-banner{
    background:#06213f;
    color:#fff;
    padding:42px 24px;
}

.fps-experience-banner__inner{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:36px;
}

.fps-eyebrow{
    display:block;
    margin-bottom:10px;
    color:#d5ad5f;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:.82rem;
}

.fps-experience-banner h2{
    margin:0 0 12px;
    color:#fff;
    font-size:clamp(1.6rem, 3vw, 2.4rem);
    line-height:1.15;
}

.fps-experience-banner p{
    margin:0;
    max-width:760px;
    color:rgba(255,255,255,.88);
    font-size:1.05rem;
    line-height:1.7;
}

.fps-experience-banner__button{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    border-radius:999px;
    background:#d5ad5f;
    color:#06213f;
    font-weight:700;
    text-decoration:none;
    transition:.2s ease;
}

.fps-experience-banner__button:hover{
    background:#fff;
    color:#06213f;
    transform:translateY(-1px);
}

@media(max-width:780px){
    .fps-experience-banner__inner{
        flex-direction:column;
        align-items:flex-start;
    }
}

.fps-modal__box {
    position: relative;
}

.fps-modal__wclose {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
html,
body {
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.wp-site-blocks,
.entry-content,
.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.wp-block-column {
  max-width: 100%;
  box-sizing: border-box;
}

.wp-block-columns {
  overflow-x: hidden;
}

.wp-block-column {
  min-width: 0;
}

@media (max-width: 768px) {
  .guide-grid,
  .fps-guide-grid,
  .fps-guides-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .guide-sidebar,
  .fps-guide-sidebar,
  .fps-guide-cta,
  .need-help-box,
  .book-consultation-box {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  .guide-layout,
  .fps-guide-layout,
  .single-guide-layout {
    display: block !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
}

@media (max-width: 900px) {
  .fps-guide-shell {
    grid-template-columns: 1fr;
  }

  .fps-guide-sidebar {
    order: 2;
  }

  .fps-guide-main {
    order: 1;
  }
}
@media (max-width: 900px) {
  .sidebar-box {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 24px 0 0 !important;
    box-sizing: border-box;
    transform: none !important;
  }

  .sidebar-box .btn {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }
  .wp-block-paragraph {
    margin-left:4%;
    margin-right:4%;
  }
  .wp-block-heading {
    margin-left:4%;
    margin-right:4%;
  }
}