:root {
    --navy-950: #130f32;
    --navy-900: #1e1648;
    --navy-800: #2f2368;
    --blue-600: #3f4fc4;
    --green-600: #16a876;
    --gold-500: #c99a32;
    --ink-900: #182235;
    --ink-700: #516078;
    --ink-500: #748199;
    --paper: #ffffff;
    --mist: #f5f7fb;
    --aqua: #e9fbf4;
    --warm: #f8f4ff;
    --line: #dce4ef;
    --shadow: 0 20px 50px rgba(9, 32, 74, 0.12);
    --shadow-soft: 0 12px 28px rgba(24, 34, 53, 0.08);
    --radius-card: 8px;
    --header-height: 84px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink-900);
    background: #f8fafc;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.section-space {
    padding: 100px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.section-heading h2,
.section-intro h2,
.intro-section h2,
.why-section h2,
.contact-section h2,
.hero-section h1 {
    font-family: "Outfit", sans-serif;
    letter-spacing: 0;
}

.section-heading h2,
.section-intro h2,
.intro-section h2,
.why-section h2,
.contact-section h2 {
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.12;
    margin: 1rem 0;
}

.section-heading p,
.section-intro p,
.intro-section p,
.why-section p,
.contact-section p,
.info-card p,
.plan-card p,
.value-card p,
.location-card p,
.lead-copy {
    color: var(--ink-700);
    line-height: 1.78;
}

.section-tag,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.54rem 0.86rem;
    border-radius: 999px;
    background: var(--aqua);
    color: var(--green-600);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.13);
    color: #e9f4ff;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1040;
    padding-top: 0.7rem;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header .navbar {
    min-height: var(--header-height);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(9, 32, 74, 0.1);
    padding-top: 0.2rem;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 166px;
    max-width: 100%;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .brand-logo {
    filter: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
    padding: 0.65rem 0.82rem !important;
    transition: color 0.2s ease;
}

.site-header.is-scrolled .nav-link {
    color: var(--ink-900);
}

.nav-link:hover,
.nav-link:focus,
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus {
    color: var(--green-600);
}

.navbar-toggler {
    border: 0;
    padding: 0.3rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.site-header.is-scrolled .navbar-toggler-icon {
    filter: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-header,
.btn-primary-main,
.btn-outline-main,
.btn-light-main,
.btn-outline-light,
.btn-plan {
    border-radius: 999px;
    font-weight: 800;
    padding: 0.82rem 1.35rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-header {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .btn-header {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff;
}

.btn-primary-main {
    background: var(--green-600);
    border: 1px solid var(--green-600);
    color: #fff;
    box-shadow: 0 14px 28px rgba(22, 129, 93, 0.22);
}

.btn-primary-main:hover,
.btn-primary-main:focus {
    background: #116f50;
    border-color: #116f50;
    color: #fff;
}

.btn-outline-main {
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #fff;
}

.btn-outline-main:hover,
.btn-outline-main:focus {
    background: #fff;
    color: var(--navy-900);
}

.btn-light-main {
    background: #fff;
    border: 1px solid #fff;
    color: var(--navy-900);
}

.btn-light-main:hover,
.btn-light-main:focus {
    color: var(--navy-900);
    background: #eef5ff;
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--navy-900);
    background: #fff;
}

.btn-plan {
    width: 100%;
    background: var(--navy-900);
    color: #fff;
    border: 1px solid var(--navy-900);
    margin-top: auto;
}

.btn-plan:hover,
.btn-plan:focus {
    color: #fff;
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.btn-plan-light {
    background: #fff;
    color: var(--navy-900);
    border-color: #fff;
}

.btn-plan-light:hover,
.btn-plan-light:focus {
    background: var(--warm);
    color: var(--navy-900);
    border-color: var(--warm);
}

.btn-header:hover,
.btn-primary-main:hover,
.btn-outline-main:hover,
.btn-light-main:hover,
.btn-outline-light:hover,
.btn-plan:hover {
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 170px 0 108px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(19, 15, 50, 0.94) 0%, rgba(19, 15, 50, 0.84) 42%, rgba(19, 15, 50, 0.48) 72%, rgba(19, 15, 50, 0.34) 100%),
        linear-gradient(0deg, rgba(19, 15, 50, 0.62), rgba(19, 15, 50, 0.08)),
        url("https://images.pexels.com/photos/36706840/pexels-photo-36706840.jpeg?auto=compress&cs=tinysrgb&w=1920");
    background-position: center;
    background-size: cover;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--blue-600));
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero-section h1 {
    font-size: clamp(2.55rem, 5vw, 5rem);
    line-height: 1.02;
    margin: 1.2rem 0 1.35rem;
    max-width: 760px;
}

.hero-text {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 2.4rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.14);
    max-width: 780px;
}

.trust-strip div {
    min-height: 112px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    font-size: 1rem;
}

.trust-strip span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.hero-card,
.info-card,
.plan-card,
.value-card,
.location-card {
    border-radius: var(--radius-card);
}

.hero-card {
    overflow: hidden;
    background: #fff;
    color: var(--ink-900);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.logo-frame {
    padding: 1.7rem;
    background: linear-gradient(180deg, #ffffff, #eef4fb);
    text-align: center;
}

.hero-logo {
    width: min(100%, 330px);
}

.hero-card-body {
    padding: 1.65rem;
}

.card-kicker {
    display: inline-flex;
    color: var(--green-600);
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-card h2 {
    font-family: "Outfit", sans-serif;
    font-size: 1.65rem;
    line-height: 1.2;
    margin: 0.65rem 0 0.8rem;
}

.summary-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.summary-list div {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.88rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--mist);
    font-weight: 800;
}

.summary-list i {
    color: var(--green-600);
}

.intro-section {
    background: var(--warm);
}

.lead-copy {
    font-size: 1.12rem;
    margin: 0;
}

.benefits-section {
    background:
        linear-gradient(180deg, #fff 0%, #f7f8fd 100%);
}

.assistance-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
    gap: 1.2rem;
    align-items: stretch;
}

.assistance-feature {
    min-height: 100%;
    padding: 1.65rem;
    border-radius: var(--radius-card);
    background:
        radial-gradient(circle at top right, rgba(22, 168, 118, 0.28), transparent 28%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    color: #fff;
    box-shadow: var(--shadow);
}

.assistance-feature span {
    display: inline-flex;
    padding: 0.5rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e7fff6;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.4rem;
}

.assistance-feature h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.7rem, 2.4vw, 2.45rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.assistance-feature p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.78;
}

.assistance-feature ul {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 1.35rem 0 0;
}

.assistance-feature li {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.assistance-feature i {
    color: #65e0b5;
    flex: 0 0 auto;
}

.assistance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.info-card,
.plan-card,
.value-card {
    padding: 1.55rem;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.info-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 129, 93, 0.35);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-card);
    background: var(--aqua);
    color: var(--green-600);
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
}

.info-card h3,
.plan-card h3,
.value-card span,
.location-card h3,
.site-footer h3 {
    font-family: "Outfit", sans-serif;
}

.info-card h3 {
    font-size: 1.24rem;
    margin-bottom: 0.75rem;
}

.plans-section {
    background:
        radial-gradient(circle at top left, rgba(22, 168, 118, 0.08), transparent 24%),
        var(--mist);
}

.section-intro {
    margin-bottom: 2.4rem;
}

.plan-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-featured {
    background:
        radial-gradient(circle at top right, rgba(22, 168, 118, 0.22), transparent 28%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    color: #fff;
    border-color: var(--navy-900);
}

.plan-featured p,
.plan-featured .price-note {
    color: rgba(255, 255, 255, 0.76);
}

.plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.plan-top span {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: var(--aqua);
    color: var(--green-600);
    font-weight: 800;
    font-size: 0.82rem;
}

.plan-featured .plan-top span {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.plan-top i {
    color: var(--gold-500);
    font-size: 1.45rem;
}

.plan-card h3 {
    font-size: 2rem;
    line-height: 1.12;
    margin: 0;
}

.price-note {
    color: var(--ink-500);
    font-weight: 800;
    margin: 0.4rem 0 1rem;
}

.example-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.4rem;
    padding: 1.35rem;
    border-radius: var(--radius-card);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.example-band strong,
.example-band span {
    display: block;
}

.example-band strong {
    color: var(--navy-900);
    font-size: 1.08rem;
}

.example-band span {
    color: var(--ink-700);
    margin-top: 0.25rem;
}

.why-section {
    background: #fff;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.check-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--mist);
    font-weight: 800;
}

.check-item i {
    color: var(--green-600);
    flex: 0 0 auto;
}

.check-item-wide {
    grid-column: 1 / -1;
    background: var(--aqua);
}

.institutional-section {
    background: linear-gradient(180deg, var(--warm), #fff);
}

.value-card {
    border-top: 4px solid var(--green-600);
}

.value-card span {
    display: block;
    color: var(--navy-900);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.value-card p {
    margin: 0;
}

.contact-section {
    background: #fff;
}

.contact-shell {
    padding: 2rem;
    border-radius: var(--radius-card);
    background:
        radial-gradient(circle at 86% 16%, rgba(22, 168, 118, 0.26), transparent 26%),
        linear-gradient(110deg, rgba(19, 15, 50, 0.98), rgba(47, 35, 104, 0.95)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
    color: #fff;
    box-shadow: var(--shadow);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.contact-list i {
    color: var(--green-500);
    font-size: 1.2rem;
}

.contact-list a {
    color: inherit;
}

.contact-list a:hover {
    color: #fff;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.location-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    color: var(--ink-900);
}

.location-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.35rem;
}

.address-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-card);
    background: #fff;
    color: var(--green-600);
    font-size: 1.4rem;
    border: 1px solid var(--line);
}

.location-label {
    display: inline-flex;
    color: var(--green-600);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.location-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.location-card p {
    color: var(--ink-700);
}

.location-card address {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: var(--radius-card);
    background: var(--warm);
    color: var(--navy-900);
    font-style: normal;
    font-weight: 800;
}

.map-frame {
    position: relative;
    min-height: 260px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--mist);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.35rem;
    background: var(--mist);
    color: var(--ink-700);
    font-size: 0.92rem;
}

.map-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-600);
    font-weight: 800;
    white-space: nowrap;
}

.map-footer a:hover,
.map-footer a:focus {
    color: var(--navy-900);
}

.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1080;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--green-600);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 18px 42px rgba(22, 168, 118, 0.32);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-toggle:hover,
.chat-toggle:focus {
    transform: translateY(-3px);
    background: #119566;
    box-shadow: 0 22px 50px rgba(22, 168, 118, 0.4);
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    border-radius: var(--radius-card);
    background: #fff;
    color: var(--ink-900);
    border: 1px solid var(--line);
    box-shadow: 0 26px 70px rgba(19, 15, 50, 0.24);
}

.chat-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem;
    background:
        radial-gradient(circle at top right, rgba(22, 168, 118, 0.2), transparent 32%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    color: #fff;
}

.chat-panel-header span {
    color: #bff2df;
    font-size: 0.78rem;
    font-weight: 800;
}

.chat-panel-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    margin: 0.2rem 0 0;
}

.chat-close {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.chat-form {
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem;
}

.chat-field {
    display: grid;
    gap: 0.38rem;
}

.chat-field label {
    color: var(--ink-900);
    font-size: 0.86rem;
    font-weight: 800;
}

.chat-field input,
.chat-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--mist);
    color: var(--ink-900);
    padding: 0.75rem 0.85rem;
    outline: 0;
}

.chat-field input:focus,
.chat-field textarea:focus {
    border-color: rgba(22, 168, 118, 0.62);
    box-shadow: 0 0 0 0.22rem rgba(22, 168, 118, 0.12);
}

.chat-submit {
    width: 100%;
}

.chat-alert {
    display: none;
    padding: 0.85rem;
    border-radius: var(--radius-card);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.5;
}

.chat-alert.is-success,
.chat-alert.is-error {
    display: block;
}

.chat-alert.is-success {
    background: var(--aqua);
    color: #0f684d;
}

.chat-alert.is-error {
    background: #fff0f0;
    color: #8a2424;
}

.site-footer {
    padding: 72px 0 28px;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.74);
}

.footer-logo {
    width: 200px;
    max-width: 100%;
    filter: brightness(0) invert(1);
}

.site-footer p {
    margin-top: 1.35rem;
    line-height: 1.8;
}

.site-footer h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1.05rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.7rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.92rem;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .site-header {
        padding-top: 0.25rem;
        background: rgba(6, 23, 51, 0.94);
        backdrop-filter: blur(16px);
    }

    .navbar-collapse {
        margin-top: 0.8rem;
        padding: 1rem;
        border-radius: var(--radius-card);
        background: rgba(255, 255, 255, 0.08);
    }

    .site-header.is-scrolled .navbar-collapse {
        background: rgba(9, 32, 74, 0.06);
    }

    .site-header.is-scrolled .navbar-collapse .btn-header {
        width: 100%;
    }

    .hero-section {
        padding-top: 145px;
    }

    .trust-strip,
    .check-grid,
    .assistance-shell {
        grid-template-columns: 1fr;
    }

    .check-item-wide {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .assistance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-height: 76px;
    }

    .section-space {
        padding: 78px 0;
    }

    .brand-logo {
        width: 146px;
    }

    .hero-section {
        padding: 132px 0 82px;
    }

    .hero-actions,
    .contact-actions,
    .example-band {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .contact-actions .btn,
    .example-band .btn,
    .btn-header {
        width: 100%;
    }

    .trust-strip div {
        min-height: auto;
    }

    .contact-shell {
        padding: 1.25rem;
    }

    .map-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-footer a {
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.45rem;
    }

    .info-card,
    .plan-card,
    .value-card,
    .hero-card-body {
        padding: 1.25rem;
    }

    .location-info {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .map-frame {
        min-height: 230px;
    }

    .chat-widget {
        right: 16px;
        bottom: 16px;
    }

    .chat-toggle {
        width: 58px;
        height: 58px;
    }

    .chat-panel {
        bottom: 74px;
    }

    .logo-frame {
        padding: 1.2rem;
    }
}
