/* ==========================================================================
   landing.css — Landing page specific styles for Default.aspx
   Loaded ONLY on Default.aspx. Do not add to agency.css (shared by all pages).
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* ---------- Design Tokens ---------- */
:root {
    --rpo-primary:  #2596be;
    --rpo-primary-hover: #1e7a9b;
    --rpo-dark:     #14212B;
    --rpo-light-bg: #f7f7f7;
    --rpo-red:      #e74c3c;
    --rpo-green:    #27ae60;
    --rpo-text:     #575a7b;
    --rpo-border:   #e0e0e0;
}

/* ==========================================================================
   UTILITY BAR
   ========================================================================== */
.utility-bar {
    background-color: #14212B;
    color: #ccc;
    font-size: 12px;
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    line-height: 1.6;
}
.utility-bar a {
    color: #ccc;
    text-decoration: none;
    margin-left: 10px;
}
.utility-bar a:hover { color: #fff; }
.utility-contact span { margin-right: 16px; }
.utility-contact i,
.utility-social i { margin-right: 4px; }
.utility-social a { font-size: 14px; }

/* ==========================================================================
   NAVBAR OVERRIDES (landing-page specific)
   ========================================================================== */
body.landing-page {
    padding-top: 158px; /* utility bar (33px) + navbar (125px) */
}
.landing-page .navbar-default {
    top: 33px;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: 125px;
}
.landing-page .navbar-brand {
    padding: 5px 15px;
    height: 125px;
    display: flex;
    align-items: center;
}

/* ---- Desktop: logo left | nav centered | button right ---- */
@media (min-width: 768px) {
    /* Anchor point for absolutely-centered nav */
    .landing-page .navbar-default .container-fluid {
        position: relative;
    }
    /* Nav items: pinned to exact center of the navbar — both axes */
    .nav-landing {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        float: none !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center;
        white-space: nowrap;
    }
    /* Button: pinned to right edge, vertically centered */
    .nav-actions {
        position: absolute !important;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        float: none !important;
        margin: 0 !important;
    }
}

/* Nav items */
.nav-landing > li > a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #2d3748 !important;
    padding: 14px 12px !important;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}
.nav-landing > li > a.dropdown-toggle { cursor: pointer; }
.nav-landing > li > a:hover,
.nav-landing > li.open > a {
    color: #2596be !important;
    background: transparent !important;
}

/* Contact link highlight */
.nav-landing > li.nav-contact-link > a {
    color: #2596be !important;
    font-weight: 700;
}

/* Open dropdown toggle: white text on teal bg (agency.css sets the bg).
   Target both .navbar-nav and .nav-landing to cover the absolute-positioned nav. */
.landing-page .navbar-default .navbar-nav .open .dropdown-toggle,
.landing-page .navbar-default .navbar-nav .open .dropdown-toggle:hover,
.landing-page .navbar-default .navbar-nav .open .dropdown-toggle:focus,
.nav-landing .open > a.dropdown-toggle,
.nav-landing .open > a.dropdown-toggle:hover,
.nav-landing .open > a.dropdown-toggle:focus {
    color: #fff !important;
    background-color: #2596be !important;
}

/* Dropdown menus */
.nav-landing .dropdown-menu {
    border-top: 2px solid #2596be;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 6px 0;
    min-width: 170px;
}
.nav-landing .dropdown-menu > li > a {
    font-size: 12px;
    color: #374151;
    padding: 7px 18px;
}
.nav-landing .dropdown-menu > li > a:hover {
    background: rgba(37,150,190,0.08);
    color: #2596be;
}

/* LET'S TALK button */
.btn-get-trial {
    background-color: #2596be !important;
    color: #fff !important;
    border-radius: 4px !important;
    margin: 0 !important;
    padding: 8px 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.2s !important;
    white-space: nowrap;
    vertical-align: middle;
}
.btn-get-trial:hover {
    background-color: #1e7a9b !important;
    color: #fff !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-redesign {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.hero-redesign::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 33, 43, 0.55);
}
.hero-content-row {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}
.hero-text h1 {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    text-transform: none;
}
.hero-text p {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-text .btn-hero {
    background-color: #2596be;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 10px;
    display: inline-block;
}
.hero-text .btn-hero:hover { background-color: #1e7a9b; text-decoration: none; color: #fff; }

/* Step cards on hero right */
.hero-steps {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}
.hero-step-card {
    background: rgba(255,255,255,0.93);
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-step-card .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2596be;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    font-size: 16px;
}
.hero-step-card .step-text h5 {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: #14212B;
}
.hero-step-card .step-text p {
    margin: 0;
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}
.hero-step-card.step-header { background: #2596be; }
.hero-step-card.step-header .step-text h5 { color: #fff; font-size: 14px; }

/* Free strip */
.hero-strip {
    background-color: #2596be;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.4px;
}
.hero-strip span { margin: 0 6px; }
.hero-strip .strip-bull { opacity: 0.6; }

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-section {
    padding: 70px 0 60px;
    background: #fff;
}
.comparison-section .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.comparison-section h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 8px;
}
.comparison-section .section-sub {
    color: #777;
    font-size: 15px;
    margin-bottom: 40px;
}
/* Equal-height comparison columns via display:table */
.comparison-row {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.comparison-col {
    display: table-cell;
    vertical-align: top;
    float: none;
}
@media (max-width: 767px) {
    .comparison-row,
    .comparison-col { display: block; float: none; width: 100%; }
}

.comparison-card {
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}
.comparison-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-card ul li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
}
.comparison-card ul li:last-child { border-bottom: none; }
.comparison-card ul li i { margin-right: 10px; margin-top: 2px; flex-shrink: 0; }
.old-way {
    background: #fff5f5;
    border: 1px solid #fdd;
}
.old-way h3 { color: #c0392b; }
.old-way ul li i { color: #e74c3c; }
.rpo-way {
    background: #f0faff;
    border: 1px solid #bee3f8;
}
.rpo-way h3 { color: #2596be; }
.rpo-way ul li i { color: #27ae60; }

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background-color: #14212B;
    padding: 70px 0;
}
.stats-section .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.stats-section h2 {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.stats-section .section-sub {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 50px;
}
.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: background 0.2s;
}
.stat-card:hover { background: rgba(37,150,190,0.18); }
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2596be;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}
.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2596be;
    margin: 0 0 6px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
}
.stat-desc {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin: 0;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}
.pricing-section .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.pricing-section h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 14px;
}
.pricing-section p { color: #777; font-size: 15px; line-height: 1.7; }
.pricing-card {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e8e8e8;
}
.pricing-card .pricing-badge {
    display: inline-block;
    background: #2596be;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.pricing-card .pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #14212B;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1;
}
.pricing-card .pricing-amount span { font-size: 18px; font-weight: 400; color: #777; }
.pricing-table {
    margin: 20px 0;
    width: 100%;
}
.pricing-table tr td {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .pt-label { color: #888; }
.pricing-table .pt-value { font-weight: 700; color: #14212B; text-align: right; }
.pricing-section .btn-pricing {
    background-color: #2596be;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 10px;
}
.pricing-section .btn-pricing:hover { background-color: #1e7a9b; text-decoration: none; color: #fff; }
.pricing-section .pricing-img {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-width: 100%;
}

/* ==========================================================================
   PRICING SECTION — RESTRUCTURED
   ========================================================================== */

/* Two-column layout vertically centered */
.pricing-row {
    display: table;
    width: 100%;
}
.pricing-row > [class*="col-"] {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.pricing-text-col {
    padding-right: 40px;
}
.pricing-section h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 16px;
    text-transform: none;
}

/* Feature checklist in pricing text column */
.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}
.pricing-feature-list li {
    padding: 7px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
}
.pricing-feature-list li:last-child { border-bottom: none; }
.pricing-feature-list li .fa {
    color: #27ae60;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Dashboard mockup card */
.dashboard-mockup {
    background: #14212B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    max-width: 420px;
    margin: 0 auto;
}
.dashboard-header {
    background: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f0f0f0;
}
.dashboard-title {
    font-size: 14px;
    font-weight: 700;
    color: #14212B;
    letter-spacing: 0.3px;
}
.dashboard-title .fa {
    color: #2596be;
    margin-right: 6px;
}
.dash-new-badge {
    background: #27ae60;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}
.dashboard-metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dashboard-metric-row:last-child { border-bottom: none; }
.dm-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.dm-value {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', Arial, sans-serif;
}
.dm-free {
    background: #2596be;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 13px;
}
.dm-blue { color: #2596be; }
.dm-highlight { color: rgba(255,255,255,0.92); }

@media (max-width: 991px) {
    .pricing-row,
    .pricing-row > [class*="col-"] {
        display: block;
        float: left;
    }
    .pricing-text-col { padding-right: 15px; margin-bottom: 30px; }
    .dashboard-mockup { max-width: 100%; }
}
@media (max-width: 767px) {
    .pricing-text-col { padding-right: 15px; }
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-grid {
    padding: 80px 0;
    background: #f7f7f7;
}
.features-grid .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.features-grid h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 10px;
}
.features-grid .section-sub {
    color: #777;
    font-size: 15px;
    margin-bottom: 50px;
}
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 24px;
    margin-bottom: 24px;
    height: 100%;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
    box-shadow: 0 6px 24px rgba(37,150,190,0.12);
    transform: translateY(-3px);
}
.feature-card .feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: rgba(37,150,190,0.1);
    color: #2596be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 10px;
}
.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #777;
    font-size: 13px;
}
.feature-card ul li { padding: 3px 0; }
.feature-card ul li::before {
    content: '•';
    color: #2596be;
    font-weight: 700;
    margin-right: 6px;
}

/* ==========================================================================
   PROPERTY TYPES
   ========================================================================== */
.property-types {
    padding: 80px 0;
    background: #fff;
}
.property-types .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.property-types h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 10px;
}
.property-types .section-sub {
    color: #777;
    font-size: 15px;
    margin-bottom: 50px;
}

/* ── Equal-height flex grid ─────────────────────────────────────────── */
.property-types-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.property-types-grid > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
}

/* ── Shared card shell ──────────────────────────────────────────────── */
.property-type-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;      /* fill entire column height */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e8ee;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
.property-type-card:hover {
    box-shadow: 0 6px 20px rgba(37,150,190,0.14);
    transform: translateY(-2px);
}

/* ── Icon zone — fixed height, always centered ──────────────────────── */
.property-type-icon {
    background: linear-gradient(135deg, #2596be 0%, #14212B 100%);
    height: 96px;               /* fixed — every card identical */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    font-size: 32px;            /* uniform icon size */
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

/* ── Title zone — grows to fill leftover height, text always centred ── */
.property-type-card h5 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 14px 14px;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #14212B;
    line-height: 1.4;
    background: #fff;
    min-height: 52px;           /* guarantees short titles still have space */
}

/* ── CTA card — same structure, different palette ───────────────────── */
.property-type-card.cta-card {
    border-color: #2596be;
    background: #2596be;
}
.property-type-card.cta-card .property-type-icon {
    background: rgba(255,255,255,0.15);
    font-size: 32px;            /* keep same size as siblings */
}
.property-type-card.cta-card h5 {
    background: #2596be;
    color: #fff;
    font-size: 13px;            /* same scale as siblings */
    padding: 12px 14px 6px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;     /* don't push small below */
    min-height: 0;
}
.property-type-card.cta-card small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    padding: 4px 14px 14px;
    background: #2596be;
    line-height: 1.4;
    text-align: center;
}

/* ==========================================================================
   TRUST & SECURITY
   ========================================================================== */
.trust-section {
    padding: 70px 0;
    background: #f7f7f7;
}
.trust-section .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.trust-section h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 10px;
}
.trust-section .section-sub {
    color: #777;
    font-size: 15px;
    margin-bottom: 50px;
}
/* Equal-height trust cards */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
}
.trust-grid > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.trust-grid .trust-badge {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.trust-grid .trust-badge p {
    flex: 1 1 auto;
}

.trust-badge {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
    transition: box-shadow 0.2s;
}
.trust-badge:hover { box-shadow: 0 4px 16px rgba(37,150,190,0.12); }
.trust-badge .trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(37,150,190,0.1);
    color: #2596be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}
.trust-badge h4 {
    font-size: 15px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 8px;
}
.trust-badge p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background-color: #2596be;
    padding: 70px 0;
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 34px;
}
.btn-cta-primary {
    background-color: #f0c040;
    color: #14212B;
    border: none;
    border-radius: 4px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 6px 8px;
    transition: background 0.2s;
}
.btn-cta-primary:hover { background-color: #e0b030; text-decoration: none; color: #14212B; }
.btn-cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 4px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 6px 8px;
    transition: border-color 0.2s, background 0.2s;
}
.btn-cta-secondary:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
    text-decoration: none;
    color: #fff;
}

/* ==========================================================================
   LANDING FOOTER
   ========================================================================== */
.footer-redesign {
    background-color: #14212B;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    font-size: 14px;
    text-align: left;
}
/* White logo — scoped to footer ONLY. Header logo (.navbar-brand img) unaffected.
   Inline SVG + SVG filter converts RPO_Logo.png white bg → transparent, elements → white. */
.footer-redesign .footer-logo {
    max-height: 100px;
    width: auto;
    display: block;
    margin-bottom: 2px;
    overflow: hidden;
}
.footer-redesign h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2596be;
    display: inline-block;
}
.footer-redesign p { color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-redesign a { color: rgba(255,255,255,0.65); }
.footer-redesign a:hover { color: #2596be; text-decoration: none; }
.footer-redesign ul.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-redesign ul.footer-links li { padding: 5px 0; }
.footer-redesign ul.footer-links li a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-redesign ul.footer-links li a:hover { color: #2596be; }
/* Inline social icons in About column */
.footer-social-inline { margin: 16px 0 0; }
.footer-social-inline li { padding: 0 4px; }
.footer-social-inline li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.footer-social-inline li a:hover {
    background: #2596be;
    color: #fff;
}

/* Bold contact labels (ADDRESS:, MAIL:, PHONE:) */
.footer-contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin: 10px 0 2px;
    text-transform: uppercase;
}
.footer-contact-label:first-of-type { margin-top: 0; }
.footer-contact-value {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 4px;
    line-height: 1.5;
}
.footer-contact-value a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.footer-contact-value a:hover { color: #fff; text-decoration: underline; }

/* Newsletter input + subscribe button */
.footer-newsletter-group { margin-top: 8px; }
.footer-newsletter-group .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 24px 0 0 24px;
    padding-left: 16px;
    height: 42px;
}
.footer-newsletter-group .form-control::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter-group .form-control:focus {
    background: rgba(255,255,255,0.14);
    border-color: #2596be;
    box-shadow: none;
    color: #fff;
}
.footer-newsletter-group .btn-subscribe {
    background-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-left: none;
    border-radius: 0 24px 24px 0;
    padding: 0 16px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.footer-newsletter-group .btn-subscribe:hover {
    background-color: rgba(255,255,255,0.25);
    color: #fff;
}
.btn-subscribe-now {
    display: block;
    margin-top: 10px;
    background-color: #2596be;
    color: #fff !important;
    border-radius: 24px;
    padding: 9px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s;
}
.btn-subscribe-now:hover { background-color: #1e7a9b; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 18px 0;
}
.footer-bottom .copyright {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/* --- Page Header --- */
.contact-page-header {
    background: #fff;
    padding: 64px 0 56px;
    text-align: center;
    border-bottom: 1px solid #e8ecf0;
    position: relative;
}
.contact-page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    background: #2596be;
    border-radius: 2px 2px 0 0;
}
.contact-header-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2596be;
    margin: 0 0 14px;
}
.contact-page-header h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #14212B;
    margin: 0 0 16px;
    text-transform: none;
}
.contact-header-sub {
    font-size: 16px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Content Section --- */
.contact-content-section {
    padding: 64px 0 56px;
    background: #f4f6f8;
}

/* --- Form card (LEFT) --- */
.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}
.contact-form-card h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #14212B;
    margin: 0 0 6px;
    text-transform: none;
}
.contact-form-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Strip PublicContactForm dark-section shell */
.contact-form-card #contact {
    background: transparent !important;
    padding: 0 !important;
}
.contact-form-card #contact .container { padding: 0; width: 100%; }

/* Fix Bootstrap row negative margins bleeding outside card */
.contact-form-card #contact .row {
    margin-left: -10px;
    margin-right: -10px;
}
.contact-form-card #contact .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* pcf fields */
.pcf-field { margin-bottom: 18px; }
.pcf-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.pcf-req { color: #2596be; }

.contact-form-card #contact .form-control {
    height: 44px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1f2937;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.contact-form-card #contact .form-control:focus {
    background: #fff;
    border-color: #2596be;
    box-shadow: 0 0 0 3px rgba(37,150,190,0.12);
    outline: none;
}
.contact-form-card #contact .form-control::-webkit-input-placeholder { color: #9ca3af; }
.contact-form-card #contact .form-control:-ms-input-placeholder      { color: #9ca3af; }
.contact-form-card #contact .form-control::placeholder               { color: #9ca3af; }

.pcf-textarea { height: auto !important; resize: vertical; }

.pcf-submit { margin-top: 8px; }
.pcf-btn-send {
    background-color: #2596be;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 13px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-block;
}
.pcf-btn-send:hover  { background-color: #1e7a9b; color: #fff !important; }
.pcf-btn-send:active { background-color: #1e7a9b; }

.validationStyle { color: #e74c3c; margin-left: 6px; font-size: 13px; }
.help-block.text-danger { font-size: 12px; margin-top: 4px; min-height: 0; }

/* --- Info cards (RIGHT) — centered, icon on top --- */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-info-card:hover {
    border-bottom-color: #2596be;
    box-shadow: 0 6px 24px rgba(37,150,190,0.12);
}
.cic-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(37,150,190,0.10);
    color: #2596be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}
.contact-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #14212B;
    margin: 0 0 8px;
}
.contact-info-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}
.contact-info-card p a { color: #6b7280; text-decoration: none; }
.contact-info-card p a:hover { color: #2596be; }

/* --- Google Map --- */
.contact-map-wrapper {
    line-height: 0;
    border-top: 4px solid #2596be;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .contact-form-card { padding: 32px 28px; }
}
@media (max-width: 767px) {
    .contact-page-header h1  { font-size: 28px; }
    .contact-header-sub      { font-size: 14px; }
    .contact-form-card       { padding: 24px 18px; }
    .contact-info-cards      { flex-direction: row; flex-wrap: wrap; }
    .contact-info-card       { flex: 1 1 45%; }
}
@media (max-width: 480px) {
    .contact-info-card { flex: 1 1 100%; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .hero-steps { display: none; }
    .hero-text h1 { font-size: 30px; }
    .comparison-card { margin-bottom: 20px; }
    .stat-card { margin-bottom: 20px; }
    .pricing-section .pricing-img { margin-bottom: 30px; }
    .footer-redesign .col-md-3 { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    body.landing-page { padding-top: 95px; }
    .landing-page .navbar-default { top: 30px; }
    .utility-bar { font-size: 11px; padding: 5px 0; }
    .utility-contact .hidden-xs { display: none !important; }
    .hero-text h1 { font-size: 26px; }
    .hero-redesign { min-height: 400px; }
    .hero-content-row { padding: 50px 0 30px; }
    .comparison-section h2,
    .stats-section h2,
    .features-grid h2,
    .property-types h2,
    .trust-section h2,
    .cta-section h2 { font-size: 24px; }
    .stat-number { font-size: 34px; }
    .property-types-grid > [class*="col-"] { margin-bottom: 16px; }
    .feature-card { margin-bottom: 16px; }
    .trust-badge { margin-bottom: 16px; }
    .btn-cta-primary, .btn-cta-secondary { display: block; margin: 8px auto; max-width: 300px; }
    .footer-redesign h4 { font-size: 14px; }
}

/* ==========================================================================
   CONTACT MODAL (property pages — replaces inline dark form section)
   ========================================================================== */

/* CTA strip that triggers the modal */
.prop-contact-strip {
    background: #f0f7fa;
    border-top: 1px solid #dde8ee;
    padding: 64px 0;
    text-align: center;
}
.prop-contact-strip h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #14212B;
    margin-bottom: 12px;
    text-transform: none;
}
.prop-contact-strip p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 28px;
}
.prop-contact-strip .btn-open-modal {
    background-color: #2596be;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37,150,190,0.25);
    display: inline-block;
}
.prop-contact-strip .btn-open-modal:hover {
    background-color: #1e7a9b;
    box-shadow: 0 6px 20px rgba(37,150,190,0.35);
}

/* Modal shell */
.prop-contact-modal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    overflow: hidden;
}
.prop-contact-modal .modal-header {
    background: #14212B;
    border-bottom: none;
    padding: 18px 52px; /* symmetric: reserves space on both sides so title stays truly centered */
    position: relative;
    text-align: center;
}
.prop-contact-modal .modal-title {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    /* centered relative to full header width — not affected by close button */
}
.prop-contact-modal .modal-header .close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    opacity: 1;
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
    margin: 0;
    text-shadow: none;
    float: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
}
.prop-contact-modal .modal-header .close:hover { color: #fff; }
.prop-contact-modal .modal-body {
    background: #fff;
    padding: 28px 32px 24px;
}

/* Override agency.css dark styles when form is inside modal */
.prop-contact-modal section#contact {
    background-color: transparent !important;
    padding: 0 !important;
}
.prop-contact-modal section#contact .form-group input,
.prop-contact-modal section#contact .form-group textarea {
    padding: 8px 12px !important;
}
.prop-contact-modal section#contact .form-group textarea.form-control {
    height: 120px !important;
}
.prop-contact-modal section#contact .form-group {
    margin-bottom: 14px !important;
}
/* Ensure labels are readable on white background */
.prop-contact-modal .pcf-label {
    color: #374151 !important;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}
.prop-contact-modal .pcf-req { color: #2596be; }
.prop-contact-modal .form-control {
    border-radius: 8px !important;
    border: 1px solid #d1d5db !important;
    height: 42px !important;
    font-size: 14px !important;
    color: #1f2937 !important;
    background: #f9fafb !important;
    box-shadow: none !important;
    padding: 8px 14px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.prop-contact-modal .form-control:focus {
    border-color: #2596be !important;
    box-shadow: 0 0 0 3px rgba(37,150,190,0.12) !important;
    background: #fff !important;
    outline: none;
}
.prop-contact-modal textarea.form-control {
    height: 120px !important;
    resize: vertical;
}
.prop-contact-modal .pcf-btn-send {
    background-color: #2596be !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 32px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.prop-contact-modal .pcf-btn-send:hover { background-color: #1e7a9b !important; }

/* Center modal dialog vertically (Bootstrap 3 compat) */
.prop-contact-modal .modal-dialog {
    margin: 60px auto;
}

/* ==========================================================================
   PROPERTY TYPE PAGES — Executives / Accountants / Managers / Residents
   ========================================================================== */

/* Hero: overlay + full-cover background */
header.prop-hero {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
}
header.prop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 33, 43, 0.72);
}
header.prop-hero .container { position: relative; z-index: 1; }
header.prop-hero .intro-text { padding: 80px 0 60px; }
header.prop-hero .intro-lead-in {
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
    max-width: 700px;
    margin: 0 auto 24px !important;
    float: none !important;
    width: auto !important;
    text-transform: none !important;
}
header.prop-hero .intro-heading {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}
header.prop-hero .btn-xl {
    margin-top: 8px;
}

/* Services section */
.prop-services {
    padding: 80px 0 60px;
    background: #fff;
}
/* Override Bootstrap .text-primary to match brand teal */
.prop-services .text-primary { color: #2596be !important; }
.prop-services .section-heading {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #14212B !important;
    text-transform: none !important;
    margin-bottom: 16px !important;
}
.prop-services .section-subheading {
    font-size: 15px;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto 56px !important;
    line-height: 1.7;
    font-style: normal !important;
}
.prop-services .service-item { margin-bottom: 48px; }
.prop-services .fa-stack { margin-bottom: 16px; }
.prop-services .service-heading {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #14212B !important;
    margin-bottom: 10px !important;
}
.prop-services .text-muted {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280 !important;
}

/* Dark banner between services and testimonials */
.prop-banner {
    background-color: #14212B;
    padding: 64px 0;
    text-align: center;
}
.prop-banner h2 {
    color: #fff !important;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: none !important;
}
.prop-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 12px auto 0;
    max-width: 600px;
}

/* Testimonials as cards */
.prop-testimonials {
    background: #f7f9fc;
    padding: 80px 0;
}
.prop-testimonials .lead-quote {
    font-size: 20px;
    font-weight: 600;
    color: #14212B;
    font-style: italic;
    margin-bottom: 48px;
    text-align: center;
}
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 32px 28px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(37,150,190,0.12);
    transform: translateY(-2px);
}
.testimonial-card .quote-mark {
    font-size: 56px;
    color: #2596be;
    line-height: 1;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: 8px;
    opacity: 0.6;
}
.testimonial-card p {
    font-size: 14px;
    color: #575a7b;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

/* Residents page: CTA section (login / register / apply) */
.residents-cta {
    background-color: #14212B;
    padding: 64px 0;
    text-align: center;
}
.residents-cta h3 {
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.residents-cta .btn-xl {
    display: block;
    width: 80%;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
    header.prop-hero { min-height: 380px; }
    header.prop-hero .intro-lead-in { font-size: 24px !important; }
    .prop-testimonials .lead-quote { font-size: 17px; }
}
@media (max-width: 767px) {
    header.prop-hero { min-height: 300px; }
    header.prop-hero .intro-text { padding: 60px 0 40px; }
    header.prop-hero .intro-lead-in { font-size: 20px !important; }
    .prop-services { padding: 56px 0 40px; }
    .prop-banner { padding: 48px 0; }
    .prop-banner h2 { font-size: 22px; }
    .prop-testimonials { padding: 56px 0; }
    .testimonial-card { margin-bottom: 20px; }
    .residents-cta .btn-xl { width: 100%; }
}

/* ==========================================================================
   RESOURCE PAGES — Privacy Policy / Terms of Use
   ========================================================================== */

/* Page banner (replaces old inline dark spacer + raw h2) */
.resource-page-banner {
    background-color: #14212B;
    padding: 56px 0 52px;
    text-align: center;
}
.resource-page-banner .resource-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2596be;
    margin-bottom: 10px;
}
.resource-page-banner h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 12px;
    text-shadow: none !important;
    text-transform: none !important;
    letter-spacing: -0.3px;
}
.resource-page-banner .resource-banner-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content area */
.resource-content-section {
    background: #f7f9fc;
    padding: 60px 0 80px;
}
.resource-content-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 48px 52px;
    max-width: 860px;
    margin: 0 auto;
}

/* Typography inside resource cards */
.resource-content-card h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #14212B !important;
    text-transform: none !important;
    text-shadow: none !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
}
.resource-content-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #14212B !important;
    text-transform: none !important;
    text-shadow: none !important;
    margin: 32px 0 8px !important;
    padding: 0 !important;
}
.resource-content-card h3:first-child { margin-top: 0 !important; }
.resource-content-card p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #4b5563 !important;
    margin-bottom: 0 !important;
    font-style: normal !important;
}
.resource-content-card article {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 24px;
    margin-bottom: 4px;
}
.resource-content-card article:last-child { border-bottom: none; padding-bottom: 0; }

@media (max-width: 767px) {
    .resource-page-banner { padding: 40px 0 36px; }
    .resource-page-banner h1 { font-size: 26px; }
    .resource-content-card { padding: 28px 20px; }
}
