:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-alt: #eaf1f8;
    --surface-dark: #0f2340;
    --surface-dark-soft: #163357;
    --text: #12243b;
    --muted: #5d6d82;
    --line: #d6e0ea;
    --accent: #2c76d2;
    --accent-dark: #1f5db1;
    --accent-soft: #dcecff;
    --gold: #c8a85c;
    --success: #e2f2e8;
    --success-text: #1f5d3d;
    --shadow: 0 18px 40px rgba(15, 35, 64, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.topbar {
    background: var(--surface-dark);
    color: #fff;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.topbar-slogan {
    font-size: 0.96rem;
    font-weight: 700;
    white-space: nowrap;
}

.topbar-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.94rem;
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.92);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(214, 224, 234, 0.9);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    flex: 0 0 auto;
}

.brand img {
    width: 172px;
    height: auto;
    object-fit: contain;
}

.brand strong {
    display: none;
}

.brand span {
    display: block;
    max-width: 420px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.menu-button,
.nav-toggle {
    display: none;
}

.site-nav ul,
.dropdown ul,
.footer-list,
.resource-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    flex-wrap: nowrap;
}

.site-nav li {
    position: relative;
}

.site-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    padding: 0.72rem 0.68rem;
    border-radius: 999px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.86rem;
    white-space: nowrap;
}

.site-nav li.active > a,
.site-nav > ul > li > a:hover {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.has-dropdown > a::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 0.8rem);
    min-width: 320px;
    padding: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 0.85rem;
    color: var(--muted);
    font-size: 0.94rem;
    white-space: nowrap;
}

.dropdown a:hover {
    background: var(--surface-alt);
    color: var(--surface-dark);
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero {
    padding: 4.3rem 0 3.8rem;
}

.hero-home {
    background:
        radial-gradient(circle at top right, rgba(44, 118, 210, 0.14), transparent 34%),
        linear-gradient(135deg, #f9fbfe 0%, #edf4fb 48%, #e2edf9 100%);
}

.hero-page {
    background:
        linear-gradient(180deg, rgba(15, 35, 64, 0.03), rgba(15, 35, 64, 0.01)),
        #f9fbfd;
}

.hero-grid,
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
    margin: 0;
    line-height: 1.08;
    color: var(--surface-dark);
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    max-width: 12ch;
}

.hero-copy p,
.section-heading p,
.cta-panel p,
.feature-card p,
.stack-card p,
.resource-column li,
.faq-item p,
.site-form label span,
.hero-card-note p {
    color: var(--muted);
}

.hero-copy p {
    max-width: 62ch;
    margin: 1.15rem 0 0;
    font-size: 1.06rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.eyebrow::before {
    content: "";
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    background: var(--gold);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.84rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary,
.btn-complaint {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover,
.btn-complaint:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--surface-dark);
    border-color: rgba(15, 35, 64, 0.15);
}

.btn-secondary:hover {
    background: var(--surface-alt);
    border-color: rgba(44, 118, 210, 0.24);
}

.hero-card,
.feature-card,
.resource-column,
.stack-card,
.step-card,
.cta-panel,
.form-panel,
.faq-item {
    background: var(--surface);
    border: 1px solid rgba(214, 224, 234, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.5rem;
}

.hero-card img {
    width: min(100%, 340px);
    margin: 0 auto 1.4rem;
}

.hero-visual {
    position: relative;
    min-height: 280px;
    margin-bottom: 1.2rem;
}

.hero-visual-main,
.hero-visual-support {
    border-radius: 1.35rem;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-visual-main {
    width: 100%;
    height: 280px;
}

.hero-visual-support {
    position: absolute;
    right: 1rem;
    bottom: -1rem;
    width: 42%;
    height: 132px;
    border: 4px solid #fff;
}

.hero-visual-caption {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-card-page {
    background: linear-gradient(180deg, rgba(44, 118, 210, 0.05), rgba(255, 255, 255, 0.98));
}

.hero-card-note {
    padding: 0.2rem 0.3rem 0.4rem;
}

.hero-card-note strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--surface-dark);
    font-size: 1.15rem;
}

.hero-stats {
    display: grid;
    gap: 0.9rem;
}

.hero-stats div {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: var(--surface-alt);
}

.hero-stats span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
}

.hero-stats strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--surface-dark);
    font-size: 1rem;
}

.section {
    padding: 4.8rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.58);
}

.section-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.section-heading.left {
    text-align: left;
}

.section-heading.narrow,
.cta-panel > div:first-child {
    max-width: 760px;
}

.section-heading h2,
.cta-panel h2 {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.section-heading p {
    margin: 0.85rem auto 0;
    max-width: 62ch;
}

.section-heading.left p {
    margin-left: 0;
}

.card-grid {
    display: grid;
    gap: 1.3rem;
}

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.stack-card,
.step-card,
.resource-column,
.faq-item {
    padding: 1.55rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 100%;
}

.feature-card h3,
.resource-column h3,
.stack-card h3,
.step-card h3,
.faq-item h3,
.site-footer h3 {
    margin: 0;
    color: var(--surface-dark);
    font-size: 1.16rem;
    line-height: 1.3;
}

.feature-card a,
.resource-column a,
.stack-card a {
    color: var(--accent-dark);
    font-weight: 700;
}

.feature-card-media {
    padding-top: 0;
    overflow: hidden;
}

.feature-media {
    width: calc(100% + 3.1rem);
    max-width: calc(100% + 3.1rem);
    height: 210px;
    margin: -1.55rem -1.55rem 0;
    object-fit: cover;
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

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

.resource-column ul {
    display: grid;
    gap: 0.8rem;
}

.resource-column li + li {
    border-top: 1px solid rgba(214, 224, 234, 0.9);
    padding-top: 0.8rem;
}

.complaint-band {
    background: var(--surface-dark);
    color: #fff;
    padding: 2.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.complaint-band .section-heading h2,
.complaint-band .section-heading p,
.complaint-band .eyebrow,
.cta-panel .eyebrow,
.site-footer,
.site-footer a {
    color: #fff;
}

.complaint-band .eyebrow::before,
.cta-panel .eyebrow::before {
    background: #7fb2ff;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: #fff;
    color: var(--surface-dark);
    font-size: 1rem;
    font-weight: 800;
}

.split-grid {
    align-items: start;
}

.stack-cards {
    display: grid;
    gap: 1rem;
}

.stack-card span {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.2rem;
    background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-soft));
}

.form-panel {
    padding: 2rem;
}

.success-box {
    margin-bottom: 1.2rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    background: var(--success);
    color: var(--success-text);
    border: 1px solid rgba(31, 93, 61, 0.12);
    font-weight: 600;
}

.site-form {
    display: grid;
    gap: 1rem;
}

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

.site-form label {
    display: grid;
    gap: 0.45rem;
}

.site-form label span {
    font-size: 0.94rem;
    font-weight: 600;
}

.site-form input,
.site-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
}

.site-form input:focus,
.site-form textarea:focus {
    outline: 2px solid rgba(44, 118, 210, 0.12);
    border-color: var(--accent);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item h3 {
    margin-bottom: 0.55rem;
}

.bullet-list {
    display: grid;
    gap: 0.9rem;
    padding-left: 1.2rem;
    color: var(--muted);
}

.bullet-list li::marker {
    color: var(--accent-dark);
}

.bullet-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bullet-list.compact {
    gap: 0.6rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.contact-mini-card {
    justify-content: center;
}

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

.agent-card {
    background: var(--surface);
    border: 1px solid rgba(214, 224, 234, 0.85);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.agent-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--surface-alt);
}

.agent-card-body {
    padding: 1.35rem;
}

.agent-card-body h3,
.agent-role {
    margin: 0;
}

.agent-role {
    margin-top: 0.4rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.agent-meta {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

.agent-actions {
    margin-top: 1rem;
}

.site-footer {
    background: var(--surface-dark);
    background-image: linear-gradient(180deg, rgba(15, 35, 64, 0.98), rgba(15, 35, 64, 0.98)), url("../img/original/footer-bg-original.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.2rem;
}

.footer-logo {
    width: 168px;
    margin-bottom: 1rem;
}

.footer-list {
    display: grid;
    gap: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .card-grid.four,
    .card-grid.three,
    .resource-columns,
    .steps-grid,
    .footer-grid,
    .hero-grid,
    .split-grid,
    .agent-grid,
    .bullet-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0.75rem 1rem;
        border: 1px solid rgba(15, 35, 64, 0.12);
        border-radius: 999px;
        background: #fff;
        color: var(--surface-dark);
        font-weight: 700;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 1.25rem;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav > ul {
        display: grid;
        gap: 0.35rem;
    }

    .site-nav > ul > li > a {
        width: calc(100% - 3rem);
        padding-right: 0;
    }

    .has-dropdown {
        padding-right: 0;
    }

    .nav-toggle {
        position: absolute;
        top: 0.42rem;
        right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border: 0;
        border-radius: 999px;
        background: var(--surface-alt);
        color: var(--accent-dark);
        font-size: 1.3rem;
        font-weight: 700;
    }

    .dropdown {
        position: static;
        min-width: 0;
        margin-top: 0.6rem;
        padding: 0.45rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
    }

    .has-dropdown.is-open > .dropdown {
        display: block;
    }

    .has-dropdown > a::after {
        display: none;
    }

    .header-inner {
        position: relative;
        gap: 1rem;
    }

    .topbar-slogan {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .topbar-inner,
    .header-inner,
    .cta-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero,
    .section {
        padding: 3.6rem 0;
    }

    .card-grid.four,
    .card-grid.three,
    .resource-columns,
    .steps-grid,
    .footer-grid,
    .hero-grid,
    .split-grid,
    .form-grid,
    .agent-grid,
    .bullet-list-grid {
        grid-template-columns: 1fr;
    }

    .complaint-band,
    .cta-panel,
    .form-panel {
        padding: 1.4rem;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .hero-visual {
        min-height: 240px;
    }

    .hero-visual-main {
        height: 240px;
    }

    .hero-visual-support {
        width: 44%;
        height: 108px;
    }

    .topbar-contact {
        gap: 0.6rem 1rem;
        flex-direction: column;
    }

    .brand img {
        width: 146px;
    }
}

body {
    background: #ffffff;
    color: #222;
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
}

.topbar {
    background: #161922;
}

.topbar-contact a {
    color: #55c593;
    font-weight: 700;
}

.site-header {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    box-shadow: none;
    backdrop-filter: none;
}

.header-inner {
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand img {
    width: 205px;
}

.site-nav > ul > li > a {
    padding: 0.7rem 0.65rem;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: #161922;
}

.site-nav li.active > a,
.site-nav > ul > li > a:hover {
    background: transparent;
    color: #0095eb;
}

.has-dropdown > a::after {
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.38rem;
}

.dropdown {
    top: calc(100% + 0.25rem);
    min-width: 300px;
    border-radius: 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.dropdown a {
    border-radius: 0;
    color: #4f5664;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: auto;
}

.search-toggle {
    border: 0;
    background: transparent;
    color: transparent;
    width: 26px;
    height: 26px;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.search-toggle::before,
.search-toggle::after {
    content: "";
    position: absolute;
    border: 2px solid #161922;
}

.search-toggle::before {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    top: 4px;
    left: 4px;
}

.search-toggle::after {
    width: 8px;
    height: 0;
    top: 16px;
    left: 15px;
    transform: rotate(45deg);
    border-left: 0;
    border-bottom: 0;
}

.search-wrapper {
    border-top: 1px solid #ececec;
    background: #fff;
}

.form-searchform {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
}

.form-searchform .field {
    width: 100%;
    padding: 0.8rem 0;
    border: 0;
    font-size: 0.98rem;
    color: #161922;
    background: transparent;
    outline: 0;
}

.display-none {
    display: none;
}

.btn-complaint,
.btn.btn-primary {
    background: #55c593;
    color: #fff;
    border-color: #55c593;
    border-radius: 3px;
    min-height: 46px;
    padding: 0.9rem 1.35rem;
}

.btn-complaint:hover,
.btn.btn-primary:hover {
    background: #38a875;
    border-color: #38a875;
    transform: none;
}

.btn.btn-secondary {
    border-radius: 3px;
    min-height: 46px;
}

.hero-home {
    background: #d4e7e6 url("../img/original-slider/93036.jpg") center bottom / cover no-repeat;
    padding: 2.55rem 0 2.2rem;
    overflow: hidden;
}

.hero-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.75rem;
    align-items: center;
}

.hero-copy-home h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
    max-width: 11ch;
    color: #161922;
    margin-bottom: 0.9rem;
}

.hero-copy-home p {
    max-width: 34rem;
    font-size: 0.98rem;
    color: #222;
    line-height: 1.68;
    margin: 0 0 0.85rem;
}

.hero-card-home {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.hero-visual {
    min-height: 345px;
    background: transparent;
}

.hero-visual-main {
    object-fit: contain;
    width: 100%;
    height: 345px;
    border-radius: 0;
    box-shadow: none;
}

.hero-visual-support,
.hero-stats,
.hero-visual-caption {
    display: none;
}

.section-home-intro {
    background: #fff;
    position: relative;
}

.section-home-intro::before {
    display: none;
}

.section-heading-home {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.section-heading-home .eyebrow {
    display: none;
}

.section-heading-home h2 {
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    color: #161922;
}

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

.home-info-box {
    background: #fff;
    padding: 1.7rem;
    border-radius: 0;
    border: 1px solid #ececec;
}

.home-info-box h3 {
    font-size: 1.08rem;
    margin-bottom: 0.9rem;
    color: #161922;
}

.home-info-box p,
.home-callout p,
.section-junk-fees p {
    color: #4a4f57;
}

.read-more-link {
    display: inline-flex;
    margin-top: 1rem;
    color: #161922;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.section-ready {
    background: #fff;
}

.feature-card-home {
    min-height: 0;
    text-align: center;
    border-radius: 0;
}

.feature-card-home .feature-icon {
    width: 76px;
    margin: 0 auto 1rem;
}

.feature-card-home h3 {
    font-size: 1rem;
}

.home-callout {
    margin-top: 2rem;
    padding: 1.5rem 1.7rem;
    background: #fff;
    border-left: 4px solid #55c593;
}

.home-callout h3 {
    font-size: 1.35rem;
    color: #161922;
    margin-bottom: 0.65rem;
}

.section-junk-fees .container {
    max-width: 960px;
}

.page-subheader {
    background: #f5f5f5;
    border-bottom: 1px solid #ececec;
}

.page-subheader-inner {
    padding: 1.9rem 0 1.5rem;
}

.page-title {
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.1;
    color: #161922;
    margin: 0 0 0.65rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    color: #7a7f87;
    font-size: 0.92rem;
}

.breadcrumbs li + li::before {
    content: ">";
    margin-right: 0.7rem;
    color: #b0b5bb;
}

.page-lead-section {
    padding-top: 2.2rem;
}

.page-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.page-lead-copy h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
    color: #161922;
}

.page-lead-image img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.section-heading.left .eyebrow {
    color: #0095eb;
}

.feature-card,
.stack-card,
.faq-item,
.form-panel,
.cta-panel,
.agent-card {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #ececec;
}

.agent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agent-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.agent-meta li:first-child {
    font-weight: 700;
    color: #161922;
}

.agent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.site-form input,
.site-form textarea {
    border-radius: 0;
    border: 1px solid #d9dde2;
    background: #fff;
}

.site-footer {
    background-size: auto;
}

.footer-logo {
    width: 210px;
}

@media (max-width: 959px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .header-tools {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }

    .hero-home-grid,
    .page-lead-grid,
    .home-info-grid,
    .agent-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 280px;
    }

    .hero-visual-main {
        height: 280px;
    }
}

/* HOME ORIGINAL BOCPVA MANUAL START */
.boc-original-home{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:#000;
  background:#fff;
}
.boc-original-home *{box-sizing:border-box}
.orig-wrap{
  width:min(1060px, calc(100% - 44px));
  margin:0 auto;
}
.orig-top{
  background:#1f2427;
  color:#fff;
  font-size:14px;
}
.orig-top-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.orig-contact{
  display:flex;
  gap:28px;
  align-items:center;
}
.orig-contact a{
  color:#55c593;
  text-decoration:none;
  font-weight:500;
}
.orig-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:relative;
  z-index:10;
}
.orig-header-inner{
  min-height:96px;
  display:flex;
  align-items:center;
  gap:22px;
}
.orig-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
}
.orig-logo img{
  width:145px;
  max-height:76px;
  object-fit:contain;
  display:block;
}
.orig-nav{
  flex:1;
}
.orig-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.orig-nav > ul > li{
  position:relative;
}
.orig-nav a{
  color:#1c1c1c;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  display:block;
  padding:34px 10px;
  white-space:nowrap;
}
.orig-nav .has-drop > a:after{
  content:" ▾";
  font-size:11px;
  color:#777;
}
.orig-nav li ul{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:265px;
  background:#fff;
  box-shadow:0 12px 35px rgba(0,0,0,.13);
  border-top:3px solid #55c593;
  padding:8px 0;
}
.orig-nav li:hover > ul{
  display:block;
}
.orig-nav li ul li a{
  padding:10px 18px;
  font-size:14px;
  border-bottom:1px solid #f1f1f1;
}
.orig-nav li ul li a:hover{
  color:#38a875;
  background:#f7fbf9;
}
.orig-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}
.orig-search{
  border:0;
  background:#fff;
  font-size:17px;
  cursor:pointer;
}
.orig-complaint{
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  padding:14px 20px;
  border-radius:4px;
  white-space:nowrap;
}
.orig-mobile-btn{
  display:none;
  border:0;
  background:#55c593;
  color:#fff;
  padding:10px 13px;
  border-radius:4px;
  font-size:22px;
}
.orig-hero{
  background:#e0f8d8;
  min-height:440px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.orig-hero-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:28px;
  padding:52px 0;
}
.orig-hero-text h1{
  font-size:52px;
  line-height:1.02;
  font-weight:700;
  letter-spacing:-1.3px;
  margin:0 0 24px;
  color:#050505;
}
.orig-hero-text p{
  font-size:19px;
  line-height:1.45;
  margin:0 0 13px;
  color:#101010;
}
.orig-hero-img{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}
.orig-hero-img img{
  width:min(380px,100%);
  height:auto;
  object-fit:contain;
}
.orig-answers{
  padding:72px 0 54px;
  background:#fff;
  position:relative;
}
.orig-answers:before,
.orig-answers:after{
  content:"+";
  position:absolute;
  color:#55c593;
  font-size:44px;
  font-weight:300;
}
.orig-answers:before{left:9%;top:44px}
.orig-answers:after{right:12%;top:95px}
.orig-answers h2{
  text-align:center;
  font-size:40px;
  line-height:1.1;
  font-weight:500;
  margin:0 0 42px;
}
.orig-accordion{
  max-width:880px;
  margin:0 auto 38px;
  border:1px solid #e5e5e5;
  background:#f8f8f8;
}
.orig-acc-title{
  width:100%;
  border:0;
  background:#f3f3f3;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:23px 28px;
  font-size:20px;
  font-weight:500;
  cursor:pointer;
  text-align:left;
}
.orig-acc-title b{
  font-size:30px;
  color:#55c593;
  font-weight:400;
}
.orig-acc-body{
  display:none;
  padding:25px 28px 30px;
  background:#fff;
}
.orig-accordion.open .orig-acc-body,
.orig-accordion:hover .orig-acc-body{
  display:block;
}
.orig-product-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 20px;
  margin-top:18px;
}
.orig-product-grid a{
  color:#38a875;
  font-weight:600;
  text-decoration:none;
}
.orig-steps{
  max-width:880px;
  margin:0 auto;
  background:#fff;
  border-left:4px solid #55c593;
  padding:24px 28px;
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}
.orig-steps h3{
  margin:0 0 10px;
  font-size:24px;
  font-weight:500;
}
.orig-steps p{
  margin:0;
  font-size:17px;
  line-height:1.6;
}
.orig-ready{
  padding:68px 0;
  background:#f7fbf9;
}
.orig-ready h2{
  text-align:center;
  font-size:40px;
  line-height:1.1;
  font-weight:500;
  margin:0 0 42px;
}
.orig-ready-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.orig-ready-grid a{
  background:#fff;
  text-decoration:none;
  color:#111;
  text-align:center;
  min-height:205px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:28px 18px;
  box-shadow:0 10px 35px rgba(0,0,0,.06);
  border-radius:2px;
}
.orig-ready-grid img{
  height:58px;
  width:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.orig-ready-grid span{
  font-size:17px;
  line-height:1.35;
  font-weight:500;
}
.orig-band{
  background:#24292c;
  color:#fff;
  padding:52px 0;
}
.orig-band-inner,
.orig-junk-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}
.orig-band h2,
.orig-junk h2{
  font-size:34px;
  line-height:1.1;
  margin:0 0 10px;
  font-weight:500;
}
.orig-band p,
.orig-junk p{
  margin:0;
  font-size:17px;
  line-height:1.5;
}
.orig-band a,
.orig-junk a{
  flex:0 0 auto;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:16px 26px;
  border-radius:4px;
}
.orig-junk{
  background:#dff5e2;
  color:#111;
  padding:56px 0;
}
.orig-footer{
  background:#111;
  color:#ddd;
  padding:64px 0;
}
.orig-footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:48px;
}
.orig-footer img{
  width:145px;
  background:#fff;
  padding:8px;
  margin-bottom:18px;
}
.orig-footer p{
  max-width:390px;
  line-height:1.55;
}
.orig-footer h4{
  color:#fff;
  font-size:18px;
  margin:0 0 18px;
}
.orig-footer a{
  display:block;
  color:#55c593;
  text-decoration:none;
  margin-bottom:10px;
}
@media(max-width:1100px){
  .orig-header-inner{flex-wrap:wrap;padding:14px 0}
  .orig-nav{order:5;width:100%}
  .orig-nav ul{justify-content:flex-start;flex-wrap:wrap}
  .orig-nav a{padding:14px 10px}
}
@media(max-width:760px){
  .orig-top-inner{flex-direction:column;align-items:flex-start;padding:12px 0}
  .orig-contact{flex-direction:column;align-items:flex-start;gap:6px}
  .orig-header-inner{justify-content:space-between}
  .orig-mobile-btn{display:block}
  .orig-nav{display:none;width:100%}
  .orig-nav.open{display:block}
  .orig-nav ul{display:block}
  .orig-nav a{padding:13px 0}
  .orig-nav li ul{position:static;width:100%;box-shadow:none;border-top:1px solid #eee;padding-left:18px}
  .orig-nav li:hover > ul{display:block}
  .orig-actions{width:100%;justify-content:space-between}
  .orig-hero-inner{grid-template-columns:1fr;text-align:center}
  .orig-hero-text h1{font-size:38px}
  .orig-hero-text p{font-size:17px}
  .orig-hero-img{justify-content:center}
  .orig-product-grid{grid-template-columns:1fr}
  .orig-ready-grid{grid-template-columns:1fr}
  .orig-band-inner,.orig-junk-inner{flex-direction:column;align-items:flex-start}
  .orig-footer-grid{grid-template-columns:1fr}
}
/* HOME ORIGINAL BOCPVA MANUAL END */

/* ORIGINAL ALL INTERNAL PAGES START */
.boc-original-inner .orig-inner-hero{
  min-height:360px;
}
.boc-original-inner .orig-inner-hero .orig-hero-inner{
  padding:44px 0;
}
.boc-original-inner .orig-inner-hero h1{
  font-size:48px;
}
.orig-breadcrumb{
  font-size:14px;
  margin-bottom:18px;
  color:#333;
}
.orig-breadcrumb a{
  color:#38a875;
  text-decoration:none;
  font-weight:700;
}
.orig-inner-content{
  padding-top:62px;
}
.orig-inner-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:42px;
  align-items:start;
}
.orig-inner-main{
  display:grid;
  gap:22px;
}
.orig-inner-card{
  margin:0;
  max-width:none;
}
.orig-inner-side{
  background:#f7f7f7;
  padding:28px;
  border-top:4px solid #55c593;
  position:sticky;
  top:20px;
}
.orig-inner-side h3{
  margin:0 0 18px;
  font-size:23px;
  font-weight:500;
}
.orig-inner-side > a{
  display:block;
  color:#111;
  text-decoration:none;
  padding:12px 0;
  border-bottom:1px solid #e3e3e3;
  font-weight:600;
}
.orig-inner-side > a:hover{
  color:#38a875;
}
.orig-side-call{
  margin-top:26px;
  background:#fff;
  padding:22px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}
.orig-side-call h4{
  margin:0 0 8px;
  font-size:20px;
}
.orig-side-call p{
  margin:0 0 16px;
  line-height:1.5;
}
.orig-side-call a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  border-radius:4px;
  font-weight:700;
}
.orig-form{
  background:#fff;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  padding:28px;
  display:grid;
  gap:16px;
  border-left:4px solid #55c593;
}
.orig-form label{
  display:grid;
  gap:7px;
  font-weight:700;
}
.orig-form input,
.orig-form select,
.orig-form textarea{
  width:100%;
  border:1px solid #ddd;
  padding:14px 15px;
  font-family:inherit;
  font-size:15px;
}
.orig-form textarea{
  min-height:130px;
}
.orig-form button{
  justify-self:start;
  border:0;
  background:#55c593;
  color:#fff;
  padding:15px 24px;
  border-radius:4px;
  font-weight:700;
  font-family:inherit;
  font-size:16px;
}
.orig-agent-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.orig-agent-card{
  background:#fff;
  text-align:center;
  padding:24px 18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.orig-agent-card img{
  width:118px;
  height:118px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:14px;
}
.orig-agent-card h3{
  margin:0 0 4px;
  font-size:20px;
  font-weight:600;
}
.orig-agent-card p{
  margin:0 0 12px;
  color:#666;
}
.orig-agent-card a{
  display:block;
  color:#38a875;
  text-decoration:none;
  font-weight:700;
  margin-top:5px;
}
.cmp-section{
  background:#fff;
  border:1px solid #e7e7e7;
  padding:28px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.cmp-section h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.2;
}
.cmp-section h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
}
.cmp-section p{
  margin:0;
  line-height:1.7;
  color:#444;
}
.cmp-section p + p{
  margin-top:12px;
}
.cmp-kicker{
  margin-bottom:10px !important;
  color:#38a875;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.cmp-intro-grid,
.cmp-highlight-row{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(280px,.9fr);
  gap:24px;
  align-items:center;
}
.cmp-panel{
  display:grid;
  gap:14px;
}
.cmp-figure-card{
  margin:0;
  background:#f7f7f7;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}
.cmp-figure-card img{
  max-width:100%;
  max-height:260px;
  object-fit:contain;
}
.cmp-card-grid,
.cmp-media-grid,
.cmp-link-grid,
.cmp-report-list{
  display:grid;
  gap:18px;
}
.cmp-card-grid-two{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.cmp-card-grid-three,
.cmp-media-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.cmp-card,
.cmp-media-card,
.cmp-report-item{
  background:#f9fbfb;
  border:1px solid #e4eceb;
  padding:22px;
}
.cmp-media-card img{
  width:100%;
  height:160px;
  object-fit:contain;
  background:#fff;
  margin-bottom:14px;
}
.cmp-link-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.cmp-link-grid a{
  display:block;
  background:#f7faf9;
  border:1px solid #dfebea;
  padding:16px 18px;
  color:#163b35;
  text-decoration:none;
  font-weight:600;
}
.cmp-link-grid a:hover{
  color:#38a875;
  border-color:#55c593;
}
.cmp-list{
  margin:14px 0 0;
  padding-left:18px;
  color:#444;
  line-height:1.7;
}
.cmp-chip-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.cmp-chip-list li{
  background:#eef7f4;
  border:1px solid #d6ebe3;
  color:#205649;
  padding:10px 14px;
  font-size:14px;
  font-weight:600;
}
.cmp-button{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  padding:13px 20px;
  border-radius:4px;
  font-weight:700;
}
.cmp-callout{
  background:#f4faf7;
  border-left:4px solid #55c593;
}
.cmp-report-item span{
  display:block;
  margin-bottom:10px;
  color:#5b7170;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.cmp-not-found{
  background:#fff;
  border:1px solid #e5e5e5;
  padding:40px 34px;
  text-align:center;
}
.cmp-not-found h2{
  margin:0 0 12px;
}
.cmp-not-found p{
  margin:0 auto 20px;
  max-width:620px;
}
@media(max-width:900px){
  .cmp-intro-grid,
  .cmp-highlight-row,
  .cmp-card-grid-two,
  .cmp-card-grid-three,
  .cmp-media-grid,
  .cmp-link-grid{
    grid-template-columns:1fr;
  }
  .orig-inner-grid{
    grid-template-columns:1fr;
  }
  .orig-inner-side{
    position:static;
  }
  .orig-agent-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:620px){
  .cmp-section{
    padding:22px 18px;
  }
  .cmp-section h2{
    font-size:26px;
  }
  .boc-original-inner .orig-inner-hero h1{
    font-size:34px;
  }
  .orig-agent-grid{
    grid-template-columns:1fr;
  }
}
/* ORIGINAL ALL INTERNAL PAGES END */

.rfy-page .orig-hero{
  background:#e0f8d8;
  min-height:420px;
}

.rfy-content{
  padding:56px 0 72px;
  background:#fff;
}

.rfy-intro-grid,
.rfy-main-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.7fr) minmax(280px, .7fr);
  gap:34px;
  align-items:start;
}

.rfy-main-image img{
  width:100%;
  border-radius:2px;
  display:block;
}

.rfy-about-card,
.rfy-panel,
.rfy-action-card,
.rfy-reading,
.rfy-story-card{
  background:#fff;
  border:1px solid #ececec;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.rfy-about-card,
.rfy-panel,
.rfy-action-card,
.rfy-reading{
  padding:26px 28px;
}

.rfy-about-card h3,
.rfy-panel h3,
.rfy-action-card h3,
.rfy-reading h3,
.rfy-story-copy h3{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.15;
  font-weight:500;
  color:#111;
}

.rfy-section{
  margin-top:42px;
}

.rfy-section > h2{
  margin:0 0 26px;
  font-size:42px;
  line-height:1.08;
  font-weight:500;
  color:#111;
}

.rfy-panel + .rfy-panel{
  margin-top:24px;
}

.rfy-panel p,
.rfy-about-card p,
.rfy-action-card p,
.rfy-story-copy p{
  margin:0 0 14px;
  font-size:17px;
  line-height:1.65;
  color:#2b2b2b;
}

.rfy-about-card a,
.rfy-panel a,
.rfy-action-card a,
.rfy-story-copy a,
.rfy-reading a{
  color:#38a875;
  text-decoration:none;
  font-weight:600;
}

.rfy-link-columns{
  display:grid;
  gap:12px 28px;
  margin-top:18px;
}

.rfy-link-columns-two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.rfy-link-columns-three{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.rfy-link-columns ul{
  list-style:none;
  margin:0;
  padding:0;
}

.rfy-link-columns li{
  margin:0 0 12px;
  padding-bottom:12px;
  border-bottom:1px solid #eef2ef;
}

.rfy-action-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.rfy-story-card{
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:24px;
  margin-top:24px;
  overflow:hidden;
}

.rfy-story-media img{
  width:100%;
  height:100%;
  min-height:240px;
  object-fit:cover;
}

.rfy-story-copy{
  padding:26px 28px 26px 0;
}

.rfy-reading a{
  display:block;
  padding:14px 0;
  border-bottom:1px solid #eef2ef;
}

.rfy-reading span,
.rfy-reading small{
  display:block;
}

.rfy-reading small{
  margin-top:6px;
  color:#6a6a6a;
  font-size:13px;
}

.rfy-footer .orig-footer-grid{
  grid-template-columns:1.2fr .9fr .9fr;
}

@media(max-width:960px){
  .rfy-intro-grid,
  .rfy-main-layout,
  .rfy-story-card,
  .rfy-action-grid{
    grid-template-columns:1fr;
  }

  .rfy-link-columns-three{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .rfy-story-copy{
    padding:0 24px 24px;
  }
}

@media(max-width:640px){
  .rfy-content{
    padding:40px 0 54px;
  }

  .rfy-section > h2{
    font-size:34px;
  }

  .rfy-about-card,
  .rfy-panel,
  .rfy-action-card,
  .rfy-reading{
    padding:22px 20px;
  }

  .rfy-link-columns-two,
  .rfy-link-columns-three{
    grid-template-columns:1fr;
  }
}

/* RESOURCES FOR HELPING OTHERS ORIGINAL START */
.rho-page{
  background:#fff;
}
.rho-hero{
  background:#e0f8d8;
}
.rho-hero .orig-hero-text h1{
  font-size:48px;
  max-width:650px;
}
.rho-hero .orig-hero-text p{
  max-width:650px;
}
.rho-hero .orig-hero-img img{
  max-width:430px;
}
.rho-content{
  padding:64px 0 78px;
}
.rho-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.rho-main{
  display:grid;
  gap:34px;
}
.rho-block h2,
.rho-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
  color:#111;
}
.rho-block p,
.rho-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 16px;
}
.rho-lead{
  font-size:20px !important;
}
.rho-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:22px;
}
.rho-actions a,
.rho-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  padding:14px 20px;
  border-radius:3px;
}
.rho-card{
  background:#f7f7f7;
  padding:32px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.rho-credit-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  gap:24px;
  align-items:center;
}
.rho-card-icon img{
  width:100%;
  height:auto;
  object-fit:contain;
}
.rho-feature-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.rho-feature-list article{
  padding:22px;
  border:1px solid #e8eee9;
  background:#fff;
}
.rho-feature-list h3{
  font-size:20px;
  line-height:1.25;
  margin:0 0 12px;
  font-weight:500;
}
.rho-feature-list a,
.rho-link-grid a,
.rho-side-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.rho-feature-list a{
  display:block;
  margin-top:8px;
}
.rho-link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin-top:22px;
}
.rho-link-grid a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
.rho-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.rho-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.rho-side-card h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:500;
}
.rho-side-card p{
  font-size:16px;
  line-height:1.6;
  margin:0 0 16px;
}
.rho-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.rho-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:980px){
  .rho-grid,
  .rho-credit-card{
    grid-template-columns:1fr;
  }
  .rho-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .rho-content{
    padding:42px 0 58px;
  }
  .rho-feature-list,
  .rho-link-grid{
    grid-template-columns:1fr;
  }
  .rho-card{
    padding:24px;
  }
  .rho-hero .orig-hero-text h1{
    font-size:36px;
  }
}
/* RESOURCES FOR HELPING OTHERS ORIGINAL END */

/* CONSUMER COMPLAINT DATABASE ORIGINAL START */
.ccd-page{background:#fff}
.ccd-hero{background:#d4e7e6}
.ccd-hero .orig-hero-text h1{
  font-size:54px;
  max-width:650px;
}
.ccd-hero .orig-hero-text p{
  max-width:690px;
}
.ccd-hero .orig-hero-img img{
  max-width:470px;
}
.ccd-content{
  padding:64px 0 78px;
}
.ccd-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.ccd-main{
  display:grid;
  gap:38px;
}
.ccd-tools{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.ccd-tool-card{
  background:#fff;
  border:1px solid #e7eee9;
  padding:28px 24px;
  box-shadow:0 8px 28px rgba(0,0,0,.055);
}
.ccd-tool-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#55c593;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:18px;
}
.ccd-tool-card h2,
.ccd-section h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.ccd-section h3,
.ccd-side-card h3{
  font-size:23px;
  line-height:1.25;
  font-weight:500;
  margin:0 0 14px;
}
.ccd-tool-card p,
.ccd-section p,
.ccd-side-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.ccd-tool-card a,
.ccd-section a,
.ccd-side-card a,
.ccd-link{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.ccd-tool-card a{
  display:block;
  margin-top:10px;
}
.ccd-section{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.ccd-info-list{
  display:grid;
  gap:24px;
}
.ccd-info-list article{
  padding:0 0 22px;
  border-bottom:1px solid #e6eee9;
}
.ccd-info-list article:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.ccd-info-list a{
  display:block;
  margin-top:9px;
}
.ccd-download-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin:22px 0 28px;
}
.ccd-download-actions a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
.ccd-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.ccd-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.ccd-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.ccd-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:1040px){
  .ccd-grid,
  .ccd-tools{
    grid-template-columns:1fr;
  }
  .ccd-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .ccd-content{
    padding:42px 0 58px;
  }
  .ccd-section{
    padding:24px;
  }
  .ccd-download-actions{
    grid-template-columns:1fr;
  }
  .ccd-hero .orig-hero-text h1{
    font-size:38px;
  }
}
/* CONSUMER COMPLAINT DATABASE ORIGINAL END */

/* AUTO LOANS ORIGINAL START */
.alo-page{background:#fff}
.alo-hero{background:#b8cfdd}
.alo-hero .orig-hero-text h1{
  font-size:58px;
  max-width:640px;
}
.alo-hero .orig-hero-text p{
  max-width:720px;
}
.alo-hero .orig-hero-img img{
  max-width:430px;
}
.alo-content{
  padding:64px 0 78px;
}
.alo-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.alo-main{
  display:grid;
  gap:34px;
}
.alo-situation,
.alo-section,
.alo-complaint{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.alo-situation h2,
.alo-section h2,
.alo-complaint h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.alo-section h3{
  font-size:23px;
  margin:0 0 14px;
  font-weight:500;
}
.alo-section p,
.alo-complaint p,
.alo-side-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.alo-situation-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}
.alo-situation-grid a{
  background:#f7f7f7;
  padding:22px;
  color:#111;
  text-decoration:none;
  font-weight:700;
  border:1px solid #e7eee9;
}
.alo-situation-grid a:hover{
  color:#158954;
  border-color:#55c593;
}
.alo-steps{
  display:grid;
  gap:22px;
  margin-top:26px;
}
.alo-steps article{
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  gap:20px;
  padding:0 0 22px;
  border-bottom:1px solid #e6eee9;
}
.alo-steps article:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.alo-steps span{
  width:52px;
  height:52px;
  background:#55c593;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:700;
}
.alo-steps h3{
  margin:0 0 10px;
}
.alo-steps a,
.alo-issue-list a,
.alo-side-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.alo-note{
  margin-top:26px;
  background:#f7f7f7;
  padding:22px;
}
.alo-note p{
  margin:0;
}
.alo-issue-list{
  display:grid;
  gap:12px;
  margin:18px 0 22px;
}
.alo-issue-list a{
  padding:14px 18px;
  background:#f7f7f7;
  border-left:3px solid #55c593;
}
.alo-complaint{
  background:#e0f8d8;
}
.alo-complaint a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.alo-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.alo-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.alo-side-card h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:500;
}
.alo-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.alo-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:980px){
  .alo-grid{
    grid-template-columns:1fr;
  }
  .alo-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .alo-content{
    padding:42px 0 58px;
  }
  .alo-situation,
  .alo-section,
  .alo-complaint{
    padding:24px;
  }
  .alo-situation-grid,
  .alo-steps article{
    grid-template-columns:1fr;
  }
  .alo-hero .orig-hero-text h1{
    font-size:40px;
  }
}
/* AUTO LOANS ORIGINAL END */

/* BANK ACCOUNTS ORIGINAL START */
.bas-page{background:#fff}
.bas-hero{background:#d8ebcd}
.bas-hero .orig-hero-text h1{
  font-size:54px;
  max-width:690px;
}
.bas-hero .orig-hero-text p{
  max-width:720px;
}
.bas-hero .orig-hero-img img{
  max-width:450px;
}
.bas-content{
  padding:64px 0 78px;
}
.bas-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.bas-main{
  display:grid;
  gap:34px;
}
.bas-section,
.bas-complaint{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.bas-section h2,
.bas-complaint h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.bas-section h3{
  font-size:23px;
  margin:0 0 14px;
  font-weight:500;
}
.bas-section p,
.bas-complaint p,
.bas-side-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.bas-card-list{
  display:grid;
  gap:22px;
  margin:22px 0;
}
.bas-card-list article{
  padding:22px;
  background:#f7f7f7;
  border:1px solid #e6eee9;
}
.bas-card-list article h3{
  margin:0 0 10px;
}
.bas-card-list a,
.bas-term-grid a,
.bas-issue-list a,
.bas-side-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.bas-term-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin:20px 0 26px;
}
.bas-term-grid a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
.bas-issue-list{
  display:grid;
  gap:12px;
  margin:18px 0 24px;
}
.bas-issue-list a{
  padding:14px 18px;
  background:#f7f7f7;
  border-left:3px solid #55c593;
}
.bas-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.bas-complaint{
  background:#e0f8d8;
}
.bas-complaint a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.bas-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.bas-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.bas-side-card h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:500;
}
.bas-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.bas-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:980px){
  .bas-grid{
    grid-template-columns:1fr;
  }
  .bas-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .bas-content{
    padding:42px 0 58px;
  }
  .bas-section,
  .bas-complaint{
    padding:24px;
  }
  .bas-term-grid{
    grid-template-columns:1fr;
  }
  .bas-hero .orig-hero-text h1{
    font-size:38px;
  }
}
/* BANK ACCOUNTS ORIGINAL END */

/* CREDIT CARDS ORIGINAL START */
.ccp-page{background:#fff}
.ccp-hero{background:#d4e7e6}
.ccp-hero .orig-hero-text h1{
  font-size:58px;
  max-width:640px;
}
.ccp-hero .orig-hero-text p{
  max-width:720px;
}
.ccp-hero .orig-hero-img img{
  max-width:460px;
}
.ccp-content{
  padding:64px 0 78px;
}
.ccp-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.ccp-main{
  display:grid;
  gap:34px;
}
.ccp-explorer,
.ccp-section,
.ccp-complaint{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.ccp-explorer{
  background:#f7f7f7;
}
.ccp-explorer h2,
.ccp-section h2,
.ccp-complaint h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.ccp-section h3{
  font-size:23px;
  margin:0 0 14px;
  font-weight:500;
}
.ccp-explorer p,
.ccp-section p,
.ccp-complaint p,
.ccp-side-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.ccp-card-list{
  display:grid;
  gap:22px;
  margin:22px 0;
}
.ccp-card-list article{
  padding:22px;
  background:#f7f7f7;
  border:1px solid #e6eee9;
}
.ccp-card-list article h3{
  margin:0 0 10px;
}
.ccp-explorer a,
.ccp-card-list a,
.ccp-term-grid a,
.ccp-issue-list a,
.ccp-side-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.ccp-term-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin:20px 0 26px;
}
.ccp-term-grid a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
.ccp-issue-list{
  display:grid;
  gap:12px;
  margin:18px 0 24px;
}
.ccp-issue-list a{
  padding:14px 18px;
  background:#f7f7f7;
  border-left:3px solid #55c593;
}
.ccp-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.ccp-complaint{
  background:#e0f8d8;
}
.ccp-complaint a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.ccp-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.ccp-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.ccp-side-card h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:500;
}
.ccp-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.ccp-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:980px){
  .ccp-grid{
    grid-template-columns:1fr;
  }
  .ccp-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .ccp-content{
    padding:42px 0 58px;
  }
  .ccp-explorer,
  .ccp-section,
  .ccp-complaint{
    padding:24px;
  }
  .ccp-term-grid{
    grid-template-columns:1fr;
  }
  .ccp-hero .orig-hero-text h1{
    font-size:40px;
  }
}
/* CREDIT CARDS ORIGINAL END */

/* DEBT COLLECTION ORIGINAL START */
.dcp-page{background:#fff}
.dcp-hero{background:#d0ebe9}
.dcp-hero .orig-hero-text h1{
  font-size:58px;
  max-width:640px;
}
.dcp-hero .orig-hero-text p{
  max-width:720px;
}
.dcp-hero .orig-hero-img img{
  max-width:460px;
}
.dcp-content{
  padding:64px 0 78px;
}
.dcp-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.dcp-main{
  display:grid;
  gap:34px;
}
.dcp-rule,
.dcp-section,
.dcp-outreach,
.dcp-complaint{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.dcp-rule,
.dcp-outreach{
  background:#f7f7f7;
}
.dcp-rule h2,
.dcp-section h2,
.dcp-outreach h2,
.dcp-complaint h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.dcp-section h3{
  font-size:23px;
  margin:0 0 14px;
  font-weight:500;
}
.dcp-rule p,
.dcp-section p,
.dcp-outreach p,
.dcp-complaint p,
.dcp-side-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.dcp-card-list{
  display:grid;
  gap:22px;
  margin:22px 0;
}
.dcp-card-list article{
  padding:22px;
  background:#f7f7f7;
  border:1px solid #e6eee9;
}
.dcp-card-list article h3{
  margin:0 0 10px;
}
.dcp-rule a,
.dcp-card-list a,
.dcp-term-grid a,
.dcp-issue-list a,
.dcp-side-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.dcp-term-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin:20px 0 26px;
}
.dcp-term-grid a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
.dcp-issue-list{
  display:grid;
  gap:12px;
  margin:18px 0 24px;
}
.dcp-issue-list a{
  padding:14px 18px;
  background:#fff;
  border-left:3px solid #55c593;
  box-shadow:0 4px 16px rgba(0,0,0,.045);
}
.dcp-section .dcp-issue-list a{
  background:#f7f7f7;
}
.dcp-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.dcp-complaint{
  background:#e0f8d8;
}
.dcp-complaint a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.dcp-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.dcp-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.dcp-side-card h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:500;
}
.dcp-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.dcp-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:980px){
  .dcp-grid{
    grid-template-columns:1fr;
  }
  .dcp-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .dcp-content{
    padding:42px 0 58px;
  }
  .dcp-rule,
  .dcp-section,
  .dcp-outreach,
  .dcp-complaint{
    padding:24px;
  }
  .dcp-term-grid{
    grid-template-columns:1fr;
  }
  .dcp-hero .orig-hero-text h1{
    font-size:40px;
  }
}
/* DEBT COLLECTION ORIGINAL END */

/* THREE CONSUMER PRODUCT PAGES ORIGINAL START */
.triple-page{background:#fff}
.crs-hero{background:#badae4}
.fas-hero{background:#bddab3}
.mtr-hero{background:#fbeabd}
.triple-page .orig-hero-text h1{
  font-size:56px;
  max-width:700px;
}
.triple-page .orig-hero-text p{
  max-width:730px;
}
.triple-page .orig-hero-img img{
  max-width:460px;
}
.triple-content{
  padding:64px 0 78px;
}
.triple-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.triple-main{
  display:grid;
  gap:34px;
}
.triple-section,
.triple-highlight,
.triple-complaint{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.triple-highlight{
  background:#f7f7f7;
}
.triple-section h2,
.triple-highlight h2,
.triple-complaint h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.triple-section h3{
  font-size:23px;
  margin:0 0 14px;
  font-weight:500;
}
.triple-section p,
.triple-highlight p,
.triple-complaint p,
.triple-side-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.triple-card-list{
  display:grid;
  gap:22px;
  margin:22px 0;
}
.triple-card-list article{
  padding:22px;
  background:#f7f7f7;
  border:1px solid #e6eee9;
}
.triple-card-list article h3{
  margin:0 0 10px;
}
.triple-highlight a,
.triple-card-list a,
.triple-term-grid a,
.triple-issue-list a,
.triple-side-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.triple-term-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin:20px 0 26px;
}
.triple-term-grid a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
.triple-issue-list{
  display:grid;
  gap:12px;
  margin:18px 0 24px;
}
.triple-issue-list a{
  padding:14px 18px;
  background:#f7f7f7;
  border-left:3px solid #55c593;
}
.triple-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.triple-complaint{
  background:#e0f8d8;
}
.triple-complaint a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.triple-sidebar{
  display:grid;
  gap:26px;
  position:sticky;
  top:20px;
}
.triple-side-card{
  background:#f7f7f7;
  padding:26px;
  border-top:4px solid #55c593;
}
.triple-side-card h3{
  margin:0 0 16px;
  font-size:24px;
  font-weight:500;
}
.triple-side-card a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #e3e9e5;
}
.triple-side-card small{
  display:block;
  color:#777;
  font-weight:400;
  margin-top:5px;
}
@media(max-width:980px){
  .triple-grid{
    grid-template-columns:1fr;
  }
  .triple-sidebar{
    position:static;
  }
}
@media(max-width:700px){
  .triple-content{
    padding:42px 0 58px;
  }
  .triple-section,
  .triple-highlight,
  .triple-complaint{
    padding:24px;
  }
  .triple-term-grid{
    grid-template-columns:1fr;
  }
  .triple-page .orig-hero-text h1{
    font-size:38px;
  }
}
/* THREE CONSUMER PRODUCT PAGES ORIGINAL END */

/* REPORTS AGENTS ABOUT ORIGINAL START */
.rap-page{background:#fff}
.rap-plain-hero{
  background:#f5faf7;
  padding:58px 0 48px;
  border-bottom:1px solid #e7eee9;
}
.rap-plain-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
}
.rap-plain-hero p{
  max-width:860px;
  font-size:20px;
  line-height:1.55;
  margin:0;
}
.rap-content,
.about-content{
  padding:64px 0 78px;
}
.rap-grid,
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.rap-main,
.about-main{
  display:grid;
  gap:34px;
}
.rap-feature,
.rap-filter,
.about-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.rap-feature{
  background:#f7f7f7;
}
.rap-feature span,
.rap-report span{
  color:#158954;
  font-weight:700;
  display:block;
  margin-bottom:8px;
}
.rap-feature h2,
.rap-filter h2,
.about-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.rap-feature p,
.rap-report p,
.about-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.rap-feature a,
.about-links a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.rap-report{
  padding:26px 0;
  border-top:1px solid #e5eee9;
}
.rap-report:first-of-type{
  border-top:0;
}
.rap-report small{
  color:#777;
  font-size:13px;
  display:block;
  margin-bottom:8px;
  text-transform:uppercase;
}
.rap-report h3{
  font-size:24px;
  line-height:1.22;
  margin:0 0 10px;
  font-weight:500;
}
.rap-tags{
  color:#555;
  font-size:14px;
  line-height:1.5;
}
.agents-content{
  padding:64px 0 78px;
}
.agents-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}
.agent-original-card{
  background:#fff;
  padding:26px;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
  border-top:4px solid #55c593;
  text-align:center;
}
.agent-original-card img{
  width:130px;
  height:130px;
  object-fit:cover;
  border-radius:50%;
  margin:0 auto 18px;
  display:block;
}
.agent-original-card h2{
  font-size:23px;
  margin:0 0 14px;
  font-weight:500;
}
.agent-original-card p{
  margin:0 0 10px;
  line-height:1.5;
}
.agent-original-card a{
  display:block;
  color:#158954;
  font-weight:700;
  text-decoration:none;
  margin:6px 0;
}
.about-hero{
  background:#e0f8d8;
}
.about-links{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.about-links a{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
}
@media(max-width:980px){
  .rap-grid,
  .about-grid,
  .agents-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .rap-plain-hero h1{
    font-size:40px;
  }
  .rap-feature,
  .rap-filter,
  .about-card{
    padding:24px;
  }
}
/* REPORTS AGENTS ABOUT ORIGINAL END */

/* CONTACT CAREERS OMBUDSMAN ORIGINAL START */
.cco-page{background:#fff}
.cco-plain-hero{
  background:#f5faf7;
  padding:58px 0 48px;
  border-bottom:1px solid #e7eee9;
}
.cco-plain-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
}
.cco-plain-hero p{
  max-width:900px;
  font-size:20px;
  line-height:1.55;
  margin:0;
}
.careers-hero{background:#fbeabd}
.omb-hero{background:#d0ebe9}
.cco-content{
  padding:64px 0 78px;
}
.cco-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.contact-page .cco-grid{
  grid-template-columns:1fr;
}
.cco-main{
  display:grid;
  gap:34px;
}
.cco-card,
.career-list article{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.cco-start{
  background:#f7f7f7;
}
.cco-card h2,
.career-list h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.cco-card h3,
.career-list h3{
  font-size:23px;
  margin:0 0 12px;
  font-weight:500;
}
.cco-card p,
.career-list p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.cco-option-grid,
.omb-role-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.cco-option-grid article,
.omb-role-grid article{
  background:#fff;
  padding:22px;
  border:1px solid #e6eee9;
}
.cco-link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
}
.cco-link-grid a,
.cco-link-grid span{
  padding:12px 0;
  border-bottom:1px solid #e4eee7;
  color:#111;
  text-decoration:none;
  font-weight:700;
}
.cco-link-grid a:hover{
  color:#158954;
}
.cco-contact-list{
  display:grid;
  gap:22px;
}
.cco-contact-list article{
  background:#f7f7f7;
  padding:22px;
  border:1px solid #e6eee9;
}
.cco-card a,
.career-list a,
.cco-btn{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.cco-btn,
.cco-option-grid article > a,
.career-list article > a{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  padding:13px 20px;
  border-radius:3px;
  margin-top:8px;
}
.career-list{
  display:grid;
  gap:24px;
}
@media(max-width:980px){
  .cco-grid,
  .cco-option-grid,
  .omb-role-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .cco-plain-hero h1{
    font-size:40px;
  }
  .cco-card,
  .career-list article{
    padding:24px;
  }
  .cco-link-grid{
    grid-template-columns:1fr;
  }
}
/* CONTACT CAREERS OMBUDSMAN ORIGINAL END */

/* INDUSTRY WHISTLEBLOWERS ORIGINAL START */
.iwb-page{background:#fff}
.iwb-hero{
  background:#e0f8d8;
  padding:58px 0 50px;
  border-bottom:1px solid #d6ebdd;
}
.iwb-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
}
.iwb-hero p{
  max-width:920px;
  font-size:20px;
  line-height:1.56;
  margin:0;
}
.iwb-content{
  padding:64px 0 78px;
}
.iwb-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.iwb-main{
  display:grid;
  gap:34px;
}
.iwb-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.iwb-contact-options,
.iwb-toc,
.iwb-cfpb{
  background:#f7f7f7;
}
.iwb-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.iwb-card h3{
  font-size:23px;
  margin:22px 0 14px;
  font-weight:500;
}
.iwb-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.iwb-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.iwb-option-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.iwb-option-grid article{
  background:#fff;
  padding:22px;
  border:1px solid #e6eee9;
}
.iwb-option-grid article h3{
  margin-top:0;
}
.iwb-link-grid{
  display:grid;
  gap:12px;
}
.iwb-link-grid a{
  display:block;
  padding:14px 18px;
  background:#fff;
  border-left:3px solid #55c593;
}
.iwb-issue-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.iwb-issue-list span{
  display:block;
  background:#f7f7f7;
  border-left:3px solid #55c593;
  padding:14px 18px;
  font-size:16px;
  line-height:1.5;
}
.iwb-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  padding:14px 22px;
  border-radius:3px;
  margin-top:8px;
}
@media(max-width:980px){
  .iwb-grid,
  .iwb-option-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .iwb-hero h1{
    font-size:40px;
  }
  .iwb-card{
    padding:24px;
  }
  .iwb-content{
    padding:42px 0 58px;
  }
}
/* INDUSTRY WHISTLEBLOWERS ORIGINAL END */

/* INTERACTIVE REGULATIONS FINAL START */
.ir-page{background:#fff}
.ir-hero{
  background:#f5faf7;
  padding:58px 0 50px;
  border-bottom:1px solid #d6ebdd;
}
.ir-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
}
.ir-hero p{
  max-width:940px;
  font-size:20px;
  line-height:1.56;
  margin:0 0 12px;
}
.ir-content{
  padding:64px 0 78px;
}
.ir-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.ir-main{
  display:grid;
  gap:34px;
}
.ir-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.ir-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.ir-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.ir-reg-list{
  display:grid;
  gap:10px;
  margin:18px 0 26px;
}
.ir-reg-list a{
  display:block;
  color:#111;
  text-decoration:none;
  font-weight:600;
  padding:14px 18px;
  background:#f7f7f7;
  border-left:3px solid #55c593;
}
.ir-reg-list a:hover{
  color:#158954;
}
.ir-btn{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
}
.ir-notice{
  background:#f7f7f7;
}
.notfound-hero{
  background:#f5faf7;
  padding:80px 0;
}
.notfound-hero h1{
  font-size:52px;
  margin:0 0 18px;
}
.notfound-hero p{
  font-size:20px;
  max-width:720px;
  line-height:1.55;
}
.notfound-hero a{
  display:inline-block;
  background:#55c593;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:3px;
  margin-top:12px;
}
@media(max-width:980px){
  .ir-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .ir-hero h1,
  .notfound-hero h1{
    font-size:40px;
  }
  .ir-card{
    padding:24px;
  }
}
/* INTERACTIVE REGULATIONS FINAL END */

/* CLEAN MENU PAGES FIX START */
.clean-page{background:#fff}
.clean-hero{
  background:#f5faf7;
  padding:58px 0 50px;
  border-bottom:1px solid #d6ebdd;
}
.compliance-hero{background:#e0f8d8}
.rules-hero{background:#d8ebcd}
.news-hero{background:#d4e7e6}
.faq-hero{background:#fbeabd}
.clean-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
}
.clean-hero p{
  max-width:900px;
  font-size:20px;
  line-height:1.56;
  margin:0;
}
.clean-content{
  padding:64px 0 78px;
}
.clean-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.clean-main{
  display:grid;
  gap:34px;
}
.clean-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.clean-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.clean-card h3{
  font-size:23px;
  margin:0 0 12px;
  font-weight:500;
}
.clean-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.clean-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.clean-list{
  display:grid;
  gap:22px;
  margin-top:22px;
}
.clean-list article{
  background:#f7f7f7;
  padding:22px;
  border:1px solid #e6eee9;
}
.clean-link-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.clean-link-grid a{
  display:block;
  background:#f7f7f7;
  padding:18px;
  border-left:3px solid #55c593;
}
@media(max-width:980px){
  .clean-grid,
  .clean-link-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .clean-hero h1{
    font-size:40px;
  }
  .clean-card{
    padding:24px;
  }
}
/* CLEAN MENU PAGES FIX END */

/* CLEAN MENU PAGES FIX START */
.clean-page{background:#fff}
.clean-hero{
  background:#f5faf7;
  padding:58px 0 50px;
  border-bottom:1px solid #d6ebdd;
}
.compliance-hero{background:#e0f8d8}
.rules-hero{background:#d8ebcd}
.news-hero{background:#d4e7e6}
.faq-hero{background:#fbeabd}
.clean-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
}
.clean-hero p{
  max-width:900px;
  font-size:20px;
  line-height:1.56;
  margin:0;
}
.clean-content{
  padding:64px 0 78px;
}
.clean-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.clean-main{
  display:grid;
  gap:34px;
}
.clean-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.clean-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.clean-card h3{
  font-size:23px;
  margin:0 0 12px;
  font-weight:500;
}
.clean-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.clean-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.clean-list{
  display:grid;
  gap:22px;
  margin-top:22px;
}
.clean-list article{
  background:#f7f7f7;
  padding:22px;
  border:1px solid #e6eee9;
}
.clean-link-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.clean-link-grid a{
  display:block;
  background:#f7f7f7;
  padding:18px;
  border-left:3px solid #55c593;
}
@media(max-width:980px){
  .clean-grid,
  .clean-link-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .clean-hero h1{
    font-size:40px;
  }
  .clean-card{
    padding:24px;
  }
}
/* CLEAN MENU PAGES FIX END */

/* MENU VISIBLE FINAL FIX START */
.menufix-page{background:#fff}
.menufix-hero{
  padding:58px 0 50px;
  border-bottom:1px solid #d6ebdd;
}
.menufix-education{background:#e0f8d8}
.menufix-rules{background:#d4e7e6}
.menufix-complaint{background:#d8ebcd}
.menufix-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
  max-width:980px;
}
.menufix-hero p{
  max-width:920px;
  font-size:20px;
  line-height:1.56;
  margin:0;
}
.menufix-content{
  padding:64px 0 78px;
}
.menufix-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.menufix-main{
  display:grid;
  gap:34px;
}
.menufix-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.menufix-cta-card{
  background:#f7f7f7;
}
.menufix-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.menufix-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.menufix-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.menufix-link-grid,
.menufix-topic-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 20px;
  margin-top:22px;
}
.menufix-link-grid a,
.menufix-topic-grid a,
.menufix-topic-grid span{
  display:block;
  background:#f7f7f7;
  padding:16px 18px;
  border-left:3px solid #55c593;
  color:#111;
  font-weight:700;
  text-decoration:none;
}
.menufix-link-grid a:hover,
.menufix-topic-grid a:hover{
  color:#158954;
}
.menufix-btn,
.menufix-form button{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  border:0;
  padding:14px 22px;
  border-radius:3px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  margin-top:10px;
}
.menufix-form{
  display:grid;
  gap:18px;
}
.menufix-form label{
  display:grid;
  gap:7px;
  font-weight:700;
}
.menufix-form input,
.menufix-form select,
.menufix-form textarea{
  width:100%;
  border:1px solid #d8e5dd;
  padding:13px 14px;
  font:inherit;
  background:#fff;
}
@media(max-width:980px){
  .menufix-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .menufix-hero h1{
    font-size:38px;
  }
  .menufix-card{
    padding:24px;
  }
  .menufix-link-grid,
  .menufix-topic-grid{
    grid-template-columns:1fr;
  }
}
/* MENU VISIBLE FINAL FIX END */

/* MENU VISIBLE FINAL FIX START */
.menufix-page{background:#fff}
.menufix-hero{
  padding:58px 0 50px;
  border-bottom:1px solid #d6ebdd;
}
.menufix-education{background:#e0f8d8}
.menufix-rules{background:#d4e7e6}
.menufix-complaint{background:#d8ebcd}
.menufix-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px;
  max-width:980px;
}
.menufix-hero p{
  max-width:920px;
  font-size:20px;
  line-height:1.56;
  margin:0;
}
.menufix-content{
  padding:64px 0 78px;
}
.menufix-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.menufix-main{
  display:grid;
  gap:34px;
}
.menufix-card{
  background:#fff;
  padding:34px;
  border-left:4px solid #55c593;
  box-shadow:0 8px 28px rgba(0,0,0,.06);
}
.menufix-cta-card{
  background:#f7f7f7;
}
.menufix-card h2{
  font-size:34px;
  line-height:1.12;
  font-weight:500;
  margin:0 0 18px;
}
.menufix-card p{
  font-size:17px;
  line-height:1.62;
  margin:0 0 15px;
}
.menufix-card a{
  color:#158954;
  font-weight:700;
  text-decoration:none;
}
.menufix-link-grid,
.menufix-topic-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 20px;
  margin-top:22px;
}
.menufix-link-grid a,
.menufix-topic-grid a,
.menufix-topic-grid span{
  display:block;
  background:#f7f7f7;
  padding:16px 18px;
  border-left:3px solid #55c593;
  color:#111;
  font-weight:700;
  text-decoration:none;
}
.menufix-link-grid a:hover,
.menufix-topic-grid a:hover{
  color:#158954;
}
.menufix-btn,
.menufix-form button{
  display:inline-block;
  background:#55c593;
  color:#fff !important;
  border:0;
  padding:14px 22px;
  border-radius:3px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  margin-top:10px;
}
.menufix-form{
  display:grid;
  gap:18px;
}
.menufix-form label{
  display:grid;
  gap:7px;
  font-weight:700;
}
.menufix-form input,
.menufix-form select,
.menufix-form textarea{
  width:100%;
  border:1px solid #d8e5dd;
  padding:13px 14px;
  font:inherit;
  background:#fff;
}
@media(max-width:980px){
  .menufix-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .menufix-hero h1{
    font-size:38px;
  }
  .menufix-card{
    padding:24px;
  }
  .menufix-link-grid,
  .menufix-topic-grid{
    grid-template-columns:1fr;
  }
}
/* MENU VISIBLE FINAL FIX END */

/* AGENTS HORIZONTAL ORIGINAL FIX START */
.agents-original-page{
  background:#fff;
}
.agents-original-hero{
  background:#f5faf7;
  padding:58px 0 46px;
  border-bottom:1px solid #e7eee9;
}
.agents-original-hero h1{
  font-size:56px;
  line-height:1.05;
  font-weight:600;
  margin:0;
  color:#111;
}
.agents-original-section{
  padding:54px 0 76px;
}
.agents-original-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
.agents-original-list{
  display:grid;
  grid-template-columns:1fr;
  gap:52px;
}
.agents-original-item{
  --agents-photo-base:128px;
  display:grid;
  grid-template-columns:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100) minmax(250px,1fr) 120px;
  gap:24px;
  align-items:start;
  padding:0 0 0;
  background:#fff;
}
.agents-original-photo{
  width:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100);
  height:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100);
  overflow:hidden;
  background:var(--agent-photo-frame, #d9f2e6);
  border-radius:16px;
}
.agents-original-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:grayscale(100%);
}
.agents-original-info h2{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.25;
  font-weight:500;
  font-style:italic;
  color:#111;
}
.agents-call-label{
  margin:0 0 10px;
  color:#777;
  font-size:14px;
}
.agents-phone{
  margin:0 0 12px;
  color:#55c593;
  font-size:15px;
}
.agents-phone a{
  color:#55c593;
  text-decoration:none;
}
.agents-line{
  width:116px;
  height:1px;
  background:#55c593;
  margin:14px 0 18px;
}
.agents-email{
  margin:0 0 24px;
  font-size:15px;
}
.agents-email a{
  color:#555;
  text-decoration:none;
}
.agents-hours{
  margin:0;
  max-width:360px;
  color:#555;
  font-size:14px;
  line-height:1.65;
}
.agents-pbx-block{
  margin-top:18px;
  display:grid;
  gap:8px;
}
.agents-pbx-button,
.agents-pbx-icon{
  border:0;
  cursor:pointer;
  font:inherit;
}
.agents-pbx-button{
  width:max-content;
  max-width:100%;
  padding:11px 16px;
  background:#55c593;
  color:#fff;
  border-radius:999px;
  font-weight:700;
}
.agents-pbx-note{
  margin:0;
  font-size:12px;
  color:#6d7a75;
}
.agents-original-icon{
  min-height:76px;
  background:#fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#333;
  font-size:15px;
}
.agents-original-icon span{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f1f1;
}
.agents-pbx-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#55c593;
  color:#fff;
  border-radius:50%;
  font-size:18px;
}
@media(max-width:1100px){
  .agents-original-item{
    --agents-photo-base:120px;
    grid-template-columns:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100) minmax(220px,1fr) 86px;
  }
}
@media(max-width:900px){
  .agents-original-layout{
    grid-template-columns:1fr;
  }
}
@media(max-width:640px){
  .agents-original-hero h1{
    font-size:40px;
  }
  .agents-original-list{
    gap:34px;
  }
  .agents-original-item{
    --agents-photo-base:92px;
    grid-template-columns:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100) 1fr;
    gap:18px;
  }
  .agents-original-photo{
    width:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100);
    height:calc(var(--agents-photo-base) * var(--agent-photo-size, 100) / 100);
  }
  .agents-original-icon{
    display:none;
  }
}
/* AGENTS HORIZONTAL ORIGINAL FIX END */

/* AGENT CALL LINKS START */
.agents-call-actions{
  margin:0 0 14px;
}
.agent-call-widget{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#eef7f3;
  border:1px solid #cfe5db;
  color:#1c5b49;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  line-height:1;
  transition:background-color .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.agent-call-widget:hover{
  background:#55c593;
  border-color:#55c593;
  color:#fff;
  transform:translateY(-1px);
}
@media(max-width:640px){
  .agents-call-actions{
    margin:0 0 12px;
  }
  .agent-call-widget{
    padding:8px 12px;
    font-size:12px;
  }
}
/* AGENT CALL LINKS END */

/* REVERT AGENTS PHOTOS TO ORIGINAL SIZE START */
.agents-original-photo,
.agent-photo,
.agent-image,
.agents-list .photo,
.agents-list img.agent-photo{
  width:128px !important;
  height:128px !important;
  max-width:128px !important;
  max-height:128px !important;
}

.agents-original-photo img,
.agent-photo img,
.agent-image img,
.agents-list .photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.agents-original-item{
  grid-template-columns:128px minmax(250px,1fr) 120px !important;
}

@media(max-width:1100px){
  .agents-original-photo,
  .agent-photo,
  .agent-image,
  .agents-list .photo,
  .agents-list img.agent-photo{
    width:120px !important;
    height:120px !important;
    max-width:120px !important;
    max-height:120px !important;
  }

  .agents-original-item{
    grid-template-columns:120px minmax(220px,1fr) 86px !important;
  }
}

@media(max-width:640px){
  .agents-original-photo,
  .agent-photo,
  .agent-image,
  .agents-list .photo,
  .agents-list img.agent-photo{
    width:92px !important;
    height:92px !important;
    max-width:92px !important;
    max-height:92px !important;
  }

  .agents-original-item{
    grid-template-columns:92px 1fr !important;
  }
}
/* REVERT AGENTS PHOTOS TO ORIGINAL SIZE END */

/* FIX VISIBLE AGENT CALL INLINE START */
.agents-call-actions{
  margin:0 0 14px;
}
.agent-call-widget,
.agent-call-inline-trigger{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:150px;
  padding:10px 18px;
  border-radius:999px;
  border:0;
  background:#25c467;
  color:#fff !important;
  text-decoration:none !important;
  font-size:14px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(37,196,103,.22);
}
.agent-call-widget:hover,
.agent-call-inline-trigger:hover{
  background:#15a856;
  color:#fff !important;
}
.agent-call-inline-loader{
  margin-top:8px;
}
.agent-call-inline-loader:empty{
  display:none;
}
/* FIX VISIBLE AGENT CALL INLINE END */

/* FIX AGENT CALL PROXY VISIBLE START */
.agents-call-actions{
  margin:8px 0 12px !important;
  display:block !important;
}
.agent-call-widget,
.agent-call-proxy-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  min-width:150px !important;
  padding:10px 18px !important;
  border-radius:999px !important;
  border:0 !important;
  background:#25c467 !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1 !important;
  cursor:pointer !important;
  box-shadow:0 8px 18px rgba(37,196,103,.22) !important;
}
.agent-call-widget:hover,
.agent-call-proxy-btn:hover{
  background:#15a856 !important;
  color:#fff !important;
}
.agent-call-inline-loader{
  margin-top:8px !important;
}
.agent-call-inline-loader > a,
.agent-call-inline-loader > button{
  display:none !important;
}
/* FIX AGENT CALL PROXY VISIBLE END */

/* FORCE VISIBLE AGENT CALL BUTTON START */
.agents-call-actions{
  margin:8px 0 14px !important;
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}
.agent-call-proxy-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:145px !important;
  height:auto !important;
  min-height:38px !important;
  padding:11px 20px !important;
  border-radius:999px !important;
  border:0 !important;
  background:#25c467 !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1 !important;
  cursor:pointer !important;
  box-shadow:0 8px 18px rgba(37,196,103,.25) !important;
  margin:6px 0 8px !important;
}
.agent-call-proxy-btn:hover{
  background:#129f50 !important;
  color:#fff !important;
}
.agent-call-inline-loader{
  display:block !important;
  margin-top:6px !important;
}
/* FORCE VISIBLE AGENT CALL BUTTON END */

/* FIX AGENT CALL CLIENT IFRAME START */
.agents-call-actions{
  margin:8px 0 14px !important;
  display:block !important;
  width:100% !important;
}
.agent-call-client-frame{
  display:block !important;
  width:190px !important;
  height:54px !important;
  max-width:100% !important;
  border:0 !important;
  overflow:hidden !important;
  background:transparent !important;
  margin:4px 0 8px !important;
}
/* FIX AGENT CALL CLIENT IFRAME END */

/* FIX AGENT CALL WIDGET IFRAME AUDIO START */
.agents-call-actions{
  margin:8px 0 14px !important;
  display:block !important;
  width:100% !important;
}
.agent-call-widget-frame{
  display:block !important;
  width:240px !important;
  height:86px !important;
  max-width:100% !important;
  border:0 !important;
  overflow:hidden !important;
  background:transparent !important;
  margin:4px 0 10px !important;
}
/* FIX AGENT CALL WIDGET IFRAME AUDIO END */

/* =========================================================
   Consumer Gov Finnace - Agents Redesign
   Nuevo layout independiente para diferenciar esta web
   ========================================================= */

.agents-original-section {
  background:
    radial-gradient(circle at top left, rgba(12, 91, 166, .10), transparent 34%),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  padding: 58px 0 72px;
}

.agents-original-layout {
  align-items: flex-start;
  gap: 34px;
}

.agents-original-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: 100%;
}

.agents-original-item {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  min-height: 100%;
  padding: 0 !important;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 66, 112, .12);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(11, 42, 74, .10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.agents-original-item:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 108, 190, .35);
  box-shadow: 0 26px 60px rgba(11, 42, 74, .16);
}

.agents-original-photo {
  width: 100% !important;
  height: 255px !important;
  max-width: none !important;
  flex: none !important;
  padding: 16px 16px 0;
  background: linear-gradient(135deg, #eaf4ff 0%, #f5fbff 50%, #edf7f2 100%);
}

.agents-original-photo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px 20px 8px 8px;
  border: 0 !important;
  box-shadow: none !important;
  background: #eef5fb;
}

.agents-original-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px !important;
  text-align: left;
}

.agents-original-info h2 {
  margin: 0 0 8px !important;
  font-size: 1.34rem !important;
  line-height: 1.15;
  color: #0b3158;
  letter-spacing: -.02em;
}

.agents-call-label {
  display: inline-flex;
  width: max-content;
  margin: 0 0 14px !important;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(12, 91, 166, .09);
  color: #0c5ba6;
  font-size: .74rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.agents-phone {
  margin: 0 0 10px !important;
  font-size: 1rem !important;
  font-weight: 800;
  color: #102f4f;
}

.agents-phone span {
  display: none;
}

.agents-phone a {
  color: #0b5fae !important;
  text-decoration: none !important;
}

.agents-email {
  margin: 0 0 14px !important;
  overflow-wrap: anywhere;
}

.agents-email a {
  color: #35536d !important;
  font-size: .93rem;
  text-decoration: none !important;
}

.agents-line {
  width: 100%;
  height: 1px;
  margin: 6px 0 13px !important;
  background: linear-gradient(90deg, rgba(12, 91, 166, .22), transparent);
}

.agents-hours {
  margin-top: auto !important;
  padding-top: 12px;
  color: #6c7d8e;
  font-size: .88rem !important;
  line-height: 1.45;
}

.agents-original-icon {
  position: absolute !important;
  top: 20px;
  right: 20px;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  background: #ffffff;
  color: #0c5ba6;
  box-shadow: 0 12px 28px rgba(11, 42, 74, .18);
  z-index: 3;
}

.agents-original-icon span,
.agents-pbx-icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background: transparent !important;
  color: #0c5ba6 !important;
  font-size: 1.15rem !important;
  cursor: pointer;
}

.agents-call-actions {
  margin: 8px 0 12px;
}

.agent-call-widget-frame {
  width: 100% !important;
  min-height: 72px;
  border: 1px solid rgba(12, 91, 166, .14);
  border-radius: 16px;
  background: #f8fbff;
}

.agents-pbx-block {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f4f8fc;
  border: 1px solid rgba(12, 91, 166, .10);
}

.agents-pbx-button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  background: #0c5ba6;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.agents-pbx-note {
  margin: 8px 0 0;
  font-size: .82rem;
  color: #637487;
}

@media (max-width: 1180px) {
  .agents-original-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .agents-original-layout {
    display: block !important;
  }

  .agents-original-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agents-original-photo {
    height: 300px !important;
  }

  .agents-original-info {
    padding: 20px !important;
  }
}


/* Ocultar completamente widget/iframe de llamada en tarjetas de agentes */
.agents-call-actions,
.agent-call-widget-frame,
iframe.agent-call-widget-frame,
.agents-original-info iframe,
.agents-original-item iframe {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* Consumer Gov Finnace - agentes limpios sin widget embebido */
.agents-call-actions,
.agent-call-widget-frame,
iframe.agent-call-widget-frame,
.agents-original-info iframe,
.agents-original-item iframe {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* =========================================================
   Agents - ajuste final visual
   icono correo mejorado + textos en verde
   ========================================================= */

.agents-original-item {
  border-color: rgba(47, 140, 96, .16) !important;
}

.agents-original-info h2 {
  color: #1d7f55 !important;
}

.agents-original-info p,
.agents-hours {
  color: #54705f !important;
}

.agents-call-label {
  background: rgba(47, 140, 96, .10) !important;
  color: #1d7f55 !important;
}

.agents-phone,
.agents-phone a {
  color: #198754 !important;
  font-weight: 800 !important;
}

.agents-email a {
  color: #198754 !important;
  font-weight: 600 !important;
}

.agents-line {
  background: linear-gradient(90deg, rgba(47, 140, 96, .28), transparent) !important;
}

.agents-original-item a:hover,
.agents-original-item a:focus {
  color: #115e3d !important;
}

/* Icono superior de correo mejorado */
.agents-original-icon {
  top: 18px;
  right: 18px;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #eef9f2 !important;
  border: 1px solid rgba(47, 140, 96, .22) !important;
  box-shadow: 0 10px 22px rgba(17, 94, 61, .12) !important;
  display: grid !important;
  place-items: center !important;
}

.agents-original-icon span,
.agents-original-icon .agents-pbx-icon {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  box-shadow: none !important;
}

/* dibuja un sobre limpio */
.agents-original-icon span::before,
.agents-original-icon .agents-pbx-icon::before {
  content: "✉";
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #198754;
}

/* detalle opcional: un poco más verde el bloque */
.agents-original-item:hover {
  border-color: rgba(47, 140, 96, .28) !important;
}


/* Quitar completamente el icono/circulo de correo roto en agentes */
.agents-original-icon,
.agents-original-icon span,
.agents-original-icon .agents-pbx-icon {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* Icono de correo simple dentro de la linea del email */
.agents-email {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin: 10px 0 14px !important;
}

.agents-email::before {
  content: "✉";
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1.2;
  color: #198754;
  margin-top: 2px;
}

.agents-email a {
  display: inline-block !important;
  color: #198754 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

.agents-email a:hover,
.agents-email a:focus {
  color: #115e3d !important;
  text-decoration: underline !important;
}

