:root{
      --esp-brand:#FCB017;
      --esp-ink:#111111;
      --esp-text:#222222;
      --esp-line:rgba(0,0,0,.08);
      --esp-dark:#000000;
      --esp-contact-radius:18px;
    }

    /* FIX: Force full height to prevent white space below footer */
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }

    body{
      font-family:Nunito,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
      background:#ffffff;
      color:#111827;
    }
      
    /* Wrapper to handle sticky footer logic */
    .esp-page-wrap {
      display: flex;
      flex-direction: column;
      min-height: 100vh; 
      padding-top: 0; 
      box-sizing: border-box;
    }
      
    img{max-width:100%; height:auto; display:block}

    /* ========================= BLOG CONTENT & SIDEBAR STYLES ========================= */
    .esp-container {
        flex: 1; 
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 40px; 
    }

    .esp-blog-layout {
      display: flex;
      flex-wrap: wrap; 
      gap: 30px;
      max-width: 1200px; 
      width: 100%;
      margin: 0 auto 60px;
      padding: 0 24px;
      align-items: flex-start; 
      box-sizing: border-box;
    }

    .wrap-blog {
      flex: 1 1 60%; 
      min-width: 300px;
      margin: 0;
      padding: 30px 24px;
      background: #fff;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      box-sizing: border-box;
    }
      
    /* Updated Headings back to Left Align */
    .wrap-blog h1 { 
        color: #111827; 
        line-height: 1.2; 
        font-weight: 700; 
        font-size: clamp(28px, 4.5vw, 40px); 
        margin-bottom: 20px; 
        margin-top: 0; 
        text-align: left; /* Changed to Left */
    }
      
    .wrap-blog h2 { 
        color: #111827; 
        line-height: 1.2; 
        font-weight: 700; 
        font-size: clamp(24px, 4vw, 32px); 
        margin-top: 40px; 
        margin-bottom: 16px; 
        text-align: left; /* Changed to Left */
    }
      
    .wrap-blog h3 { 
        color: #111827; 
        line-height: 1.2; 
        font-weight: 700; 
        font-size: 20px; 
        margin-top: 24px; 
        margin-bottom: 10px; 
        text-align: left; /* Changed to Left */
    }

    .wrap-blog p { margin: 0 0 12px; font-size: 15px; color: #374151; line-height: 1.7; }
    .wrap-blog ul { margin: 0 0 12px 18px; padding: 0; color: #374151; }
    .wrap-blog li { margin: 8px 0; font-size: 15px; line-height: 1.6; }
    .meta { font-size: 13px; color: #666666; margin-bottom: 24px; text-align: left; display: block; } /* Changed to Left */
    .meta strong { font-weight: 600; }
      
    .note { 
        background: #fff7e6; 
        padding: 20px; 
        border-radius: 12px; 
        margin: 20px 0; 
        font-size: 15px; 
        color: #444; 
        line-height: 1.6; 
        text-align: left; /* Changed to Left */
        border: none; 
    }
      
    .check { 
        background: #ffffff; 
        padding: 20px; 
        border-radius: 12px; 
        margin-bottom: 20px; 
        border: 1px solid rgba(0,0,0,0.05); 
    }
      
    .check b { display: block; font-size: 18px; color: #000; margin-bottom: 8px; text-align: left; } /* Changed to Left */
    .check p { text-align: left; } /* Changed to Left */
    .check ul { text-align: left; display: block; } /* Changed to Left */

    .hero-img { width: 100%; height: auto; max-height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 24px; display: block; }
      
    /* Internal Link Styling */
    .internal-link-box {
        margin-top: 15px;
        font-weight: 700;
        font-size: 15px;
        text-align: left; /* Changed to Left */
    }
    .internal-link-box a {
        color: var(--esp-brand);
        text-decoration: none;
        border-bottom: 1px dashed var(--esp-brand);
    }
    .internal-link-box a:hover {
        border-bottom-style: solid;
    }

    /* Subheading Style - Left */
    .sub-heading-lead {
        font-weight: 600;
        color: #475569;
        margin-bottom: 20px;
        font-size: 14.5px;
        font-style: italic;
        text-align: left; /* Changed to Left */
        max-width: 100%; /* Reset max-width constraint */
        margin-left: 0;
        margin-right: 0;
    }

    .esp-sidebar {
      flex: 1 1 300px; 
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 40px; 
    }

    .esp-widget {
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
      
    .esp-widget h3 {
      margin-top: 0;
      font-size: 18px;
      padding-bottom: 10px;
      margin-bottom: 16px;
      display: block;
      color: #111;
      text-align: left; /* Changed to Left */
      border-bottom: none; 
      font-weight: 700;
    }
      
    .esp-widget ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
      
    .esp-widget li {
      margin-bottom: 12px;
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 12px;
    }
    .esp-widget li:last-child {
      border: none;
      margin: 0;
      padding: 0;
    }
      
    .esp-widget a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
    }

    /* === CUSTOM STYLES FOR RELATED POSTS === */
    .related-posts-custom .widget-title-custom {
        display: block; 
        border-bottom: none !important;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-weight: 700;
        font-size: 20px;
        color: #111;
        text-align: left; /* Changed to Left */
    }
      
    /* Removed the yellow ::after line */
    .related-posts-custom .widget-title-custom::after {
        display: none;
    }

    .related-posts-custom ul li a {
        justify-content: space-between;
        font-weight: 600;
        color: #4b5563;
        padding: 5px 0;
    }

    .related-posts-custom ul li a span {
        color: #9ca3af; 
        font-size: 18px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .related-posts-custom ul li a:hover {
        color: var(--esp-brand);
    }
    .related-posts-custom ul li a:hover span {
        color: var(--esp-brand);
        transform: translateX(5px);
    }

    @media (max-width: 640px) {
        .widget-cta .esp-header__btn {
            padding: 16px 26px;
            font-size: 16px;
        }
    }
      
    .esp-widget a:hover {
      color: var(--esp-brand);
    }
    .esp-widget a:hover span {
        transform: translateX(4px);
    }
    .esp-widget a span {
        font-size: 15px;
        transition: transform 0.2s;
    }

    .widget-cta {
        background: #111;
        color: #fff;
        text-align: center; /* CTA stays centered as it's a specific component style */
        border: none;
    }
    .widget-cta h3 {
        color: #fff;
        border: none;
        text-align: center; /* CTA stays centered */
    }
    .widget-cta p {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
      
    /* Widget Contact */
    .contact-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        justify-content: flex-start; /* Changed to Left */
    }
    .contact-row svg {
        width: 18px;
        height: 18px;
        color: var(--esp-brand);
        flex-shrink: 0;
    }
    .contact-row:hover {
        color: var(--esp-brand);
    }

    @media (max-width: 900px) { 
      .esp-blog-layout {
         flex-direction: column; 
         padding: 0 16px;
      }
      .wrap-blog { 
         width: 100%; 
         margin-bottom: 20px;
      } 
      .esp-sidebar {
         width: 100%;
         max-width: 100%;
         position: static; 
      }
      .hero-img { max-height: 260px; } 
    }

    /* CTA button taller on mobile only (all blogs) */
    @media (max-width: 768px){
      .widget-cta .esp-header__btn{
        padding-top:18px;
        padding-bottom:18px;
        font-size:16px;
      }
    }

    .esp-widget :is(a.esp-header__btn, button.esp-header__btn, .esp-header__btn a){
      background: var(--esp-brand) !important;
      color: #111 !important;
      border: 2px solid var(--esp-brand) !important;
      border-radius: 999px !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
      padding: 18px 30px !important;
      font-weight: 700;
      text-decoration: none;
    }

    .esp-widget :is(a.esp-header__btn, button.esp-header__btn, .esp-header__btn a):hover{
      background: #fff !important;
      color: var(--esp-brand) !important;
      border-color: var(--esp-brand) !important;
      box-shadow: 0 6px 16px rgba(252,176,23,.35) !important;
    }

    /* ========================= TRENDY SECTION STYLES ========================= */
    .trendy-section {
        background-color: #ffffff;
        padding: 60px 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
        margin-top: auto; 
    }

    .trendy-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .trendy-header {
        text-align: center; /* Kept section header centered for layout balance, but subtext will be left aligned if requested, usually section headers are centered */
        margin-bottom: 40px;
    }

    .trendy-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #111;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: -0.5px;
    }

    /* REMOVED YELLOW DIVIDER */
    .trendy-header .divider {
        display: none;
    }

    .trendy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .trendy-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0,0,0,0.03);
    }

    .trendy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(252, 176, 23, 0.15);
        border-color: rgba(252, 176, 23, 0.3);
    }

    .trendy-img-box {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .trendy-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .trendy-card:hover .trendy-img-box img {
        transform: scale(1.1);
    }

    .trendy-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left; /* Ensuring left align */
    }

    .trendy-cat {
        color: var(--esp-brand);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .trendy-title {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        margin: 0 0 12px;
        line-height: 1.4;
    }

    .trendy-excerpt {
        font-size: 14px;
        color: #666;
        margin: 0 0 20px;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .trendy-read-more {
        margin-top: auto;
        font-size: 14px;
        font-weight: 700;
        color: #111;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .trendy-read-more span {
        color: var(--esp-brand);
        transition: transform 0.2s ease;
    }

    .trendy-card:hover .trendy-read-more span {
        transform: translateX(5px);
    }

    .esp-trust-logo {
      display: block; margin: 0 auto; max-height: 140px; width: auto; max-width: 100%; object-fit: contain;
    }
      
    /* === FIX: PADDING UPDATE FOR TRUST SECTION === */
    .esp-trust{
      --tc-yellow:#FCB017; --tc-ink:#0f172a; --tc-line:rgba(0,0,0,.06);
      background:#fff; 
      /* Updated Padding */
      padding-top: 70px;
      padding-bottom: 60px;
        
      border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    }
    /* === END FIX === */
      
    .esp-trust .esp-trust-in{ max-width:1100px; margin:0 auto; padding:0 16px; }
    .tc-eyebrow{
      display:inline-flex;align-items:center;gap:8px; padding:8px 14px;border:2px solid var(--line);border-radius:999px;
      font:700 12px/1 Nunito;letter-spacing:.06em;text-transform:uppercase; color:var(--tc-yellow);background:#fff;margin:0 0 10px;
    }
    .esp-trust h2{ margin:0 0 8px; text-align:center; color:#000; font: 700 clamp(28px, 4vw, 40px)/1.2 Nunito, system-ui, sans-serif; }
    .esp-trust p{ margin:0 0 20px; text-align:center; color:#475569; font:600 14.5px/1.55 Nunito,system-ui; }
    .esp-trust-grid{ display:grid; gap:18px; grid-template-columns:repeat(2,1fr); max-width:1100px; margin:0 auto; padding-inline:16px; }
    @media (min-width:960px){ .esp-trust-grid{ grid-template-columns:repeat(4,1fr); } }
    .esp-trust-card{
      display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
      min-height:150px; padding:16px; border:2px solid var(--tc-yellow); border-radius:16px; background:#fff;
      box-shadow:0 8px 20px rgba(0,0,0,.06); transition:all .25s ease; text-decoration:none; color:inherit;
    }
    .esp-trust-card:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(0,0,0,.12); border-color:#f7b615; }

/* Inline styles for cost-of-hiring-security-guards-in-the-uk.html */
.st-e467bba6 { width:100% !important; justify-content:center !important; box-sizing:border-box !important; }
:root { /* === DESIGN SYSTEM TOKENS === */
      --esp-brand: #FCB017;
      --esp-ink: #111111;
      --esp-dark: #000000;
      --esp-text-muted: #424a57; 
      --esp-card-radius: 18px;
      --esp-line: rgba(0,0,0,.08);
      
      /* Mapped Legacy Tokens */
      --esp-text: var(--esp-text-muted); }
body { margin: 0;
      font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: #ffffff;
      color: var(--esp-ink);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 16px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--esp-ink); }
p { margin: 0 0 24px;
        color: var(--esp-text-muted); }
.esp-btn { display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--esp-brand);
      color: var(--esp-ink);
      font-weight: 800;
      font-size: 16px;
      padding: 16px 36px;
      border-radius: 999px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      border: 2px solid var(--esp-brand);
      cursor: pointer; }
.esp-btn:hover { background: #e59d12;
      border-color: #e59d12;
      transform: translateY(-2px); }
.esp-section-white { background: #ffffff;
        padding: 60px 0 50px; /* Mobile Padding */ }
.esp-section-fafafa { background: #fafafa;
        padding: 60px 0 50px; /* Mobile Padding */ }
.esp-section-white, .esp-section-fafafa { padding: 70px 0 60px; /* Desktop Padding */ }
.esp-locations-hero { --brand: #FCB017;
      --ink: #ffffff;
      --overlay: rgba(0,0,0,.64);
      --minh: 30vh;
      position: relative;
      isolation: isolate;
      min-height: var(--minh);
      display: grid;
      place-items: center;
      color: var(--ink);
      background: url("https://eaglesecurityprotection.co.uk/wp-content/uploads/2026/02/Crem.-banner.webp") center / cover no-repeat #222;
      padding-block: clamp(80px, 10vw, 120px); }
.esp-locations-hero .esp-loc__title { margin: 0 0 8px;
      font: 700 clamp(32px,5vw,56px)/1.1 Nunito,system-ui,sans-serif;
      color: #fff;
      max-width: 25ch; }
.esp-locations-hero .esp-loc__lead { margin: 0 0 24px;
      font: 16px/1.7 Nunito, system-ui, sans-serif;
      max-width: 65ch;
      color: #f3f4f6; }
.esp-slices__container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.esp-location__inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.esp-slice { background: #ffffff; 
        border-radius: var(--esp-card-radius); 
        border: 1px solid rgba(15,23,42,.06); 
        box-shadow: 0 2px 6px rgba(16, 24, 40, .05), 0 30px 80px rgba(16, 24, 40, .1); 
        overflow: hidden; 
        display: grid; 
        grid-template-columns: 1fr; 
        margin-bottom: 56px; 
        transition: transform .18s ease, box-shadow .18s ease; }
.esp-slice:hover { transform: translateY(-3px); 
        box-shadow: 0 6px 14px rgba(16, 24, 40, .08), 0 36px 110px rgba(16, 24, 40, .14); }
.esp-slice:last-child { margin-bottom: 0; }
.esp-slice__media { position: relative; width: 100%; min-height: 260px; background: #e2e8f0; border-bottom: 4px solid var(--esp-brand); }
.esp-slice__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.esp-slice__body { padding: 40px 32px; align-self: center; display: flex; flex-direction: column; justify-content: center; }
.esp-slice__media { border-top-left-radius: var(--esp-card-radius); border-top-right-radius: var(--esp-card-radius); }
.esp-slice { grid-template-columns: 1fr 1fr; min-height: 380px; }
.esp-slice__media { border-bottom: 0; border-right: 4px solid var(--esp-brand); border-top-left-radius: var(--esp-card-radius); border-bottom-left-radius: var(--esp-card-radius); }
.esp-slice--reverse .esp-slice__media { order: 2; border-right: 0; border-left: 4px solid var(--esp-brand); border-radius: 0; border-top-right-radius: var(--esp-card-radius); border-bottom-right-radius: var(--esp-card-radius); }
.esp-slice--reverse .esp-slice__body { order: 1; }
.esp-slice__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--esp-brand); margin: 0 0 8px; }
.esp-slice__title { margin: 0 0 12px; font: 700 clamp(20px, 3vw, 28px)/1.2 Nunito, sans-serif; color: var(--esp-ink); }
.esp-slice__text { margin: 0; font: 16px/1.7 Nunito, sans-serif; color: var(--esp-text-muted); }
.esp-list { list-style: none; padding: 0; margin: 16px 0 24px 0; }
.esp-list li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--esp-text-muted); font-size: 16px; font-weight: 600; text-align: left; }
.esp-list li::before { content: "✓"; position: absolute; left: 0; top: 0px; color: var(--esp-brand); font-weight: 900; }
.esp-services-grid { display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin: 40px 0 0; }
.esp-service-card { background: #ffffff;
        padding: 32px;
        border-radius: var(--esp-card-radius);
        box-shadow: 0 4px 16px rgba(15,23,42,0.06);
        /* 2px border implemented for smooth hover */
        border: 2px solid var(--esp-line);
        transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.esp-service-card:hover { transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(15,23,42,0.1);
        border-color: var(--esp-brand); /* Added Hover Border */ }
.esp-service-icon { font-size: 32px;
        margin-bottom: 16px;
        display: inline-block;
        padding: 12px;
        background: #fff8eb;
        border-radius: 12px; }
.esp-location__header { text-align: center;
      margin-bottom: 40px;
      color: var(--esp-ink); }
.esp-location__header h2 { margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      letter-spacing: -0.01em; }
.esp-location__grid { display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin: 0 auto;
      max-width: 900px; }
.esp-location__item { background: #fafafa;
      /* 2px border implemented */
      border: 2px solid var(--esp-line);
      border-radius: 999px;
      padding: 12px 24px 12px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: var(--esp-ink);
      transition: all 0.2s;
      font-size: 16px; }
.esp-location__item:hover { border-color: var(--esp-brand);
      background: #fff;
      box-shadow: 0 4px 12px rgba(252, 176, 23, 0.15);
      transform: translateY(-2px); }
.esp-location__item svg { flex-shrink: 0; }
.esp-why-choose__header h2 { color: var(--esp-ink); }
.esp-why-choose__header p { color: var(--esp-text-muted); }
.esp-why-card { background: #ffffff;
        /* 2px border implemented */
        border: 2px solid var(--esp-line);
        padding: 32px;
        border-radius: var(--esp-card-radius);
        box-shadow: 0 4px 16px rgba(15,23,42,0.06);
        transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.esp-why-card:hover { transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(15,23,42,0.1);
        border-color: var(--esp-brand); /* Added Hover Border */ }
.esp-why-card h3 { color: var(--esp-ink);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px; }
.esp-why-card p { color: var(--esp-text-muted); }
.esp-why-card .esp-service-icon { background: #fff8eb; }
.esp-cta-section { background-color: #fafafa;
      padding: 70px 24px;
      text-align: center; }
.esp-cta-section h2 { color: var(--esp-ink); font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.esp-cta-section p { color: var(--esp-text-muted); font-size: 18px; max-width: 700px;
      margin: 0 auto 32px; line-height: 1.7; }
.esp-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background-color: var(--esp-brand); color: var(--esp-ink);
      padding: 16px 40px; border-radius: 999px; font-weight: 800; font-size: 18px;
      text-decoration: none; border: 2px solid var(--esp-brand);
      box-shadow: 0 8px 24px rgba(252, 176, 23, 0.25); transition: all 0.3s ease; }
.esp-cta-btn:hover { background-color: #ffffff; color: var(--esp-brand);
      transform: translateY(-3px); box-shadow: 0 12px 28px rgba(252, 176, 23, 0.15); }
.esp.mg-faqs-birmingham.v2 { all: revert;
        --brand:#FCB017; --ink:#111; --line:#d9d9d9;
        font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
        color:#222; 
        background: #fafafa;
        /* Padding matches the specified mobile rules */
        padding: 60px 16px 50px;
        border: none;
        scroll-margin-top:100px; }
.esp.mg-faqs-birmingham.v2 { /* Padding matches the specified desktop rules */
              padding: 70px 16px 60px; }
.esp.mg-faqs-birmingham.v2 details { /* 1px border implemented for details block */
        border:1px solid var(--line); border-radius:14px; background:#fff; overflow:hidden;
        transition:border-color .15s, box-shadow .15s, transform .15s; }
.esp.mg-faqs-birmingham.v2 .chev::after { content: "";
          display: inline-block;
          width: 8px;
          height: 8px;
          border-right: 2.5px solid var(--brand);
          border-bottom: 2.5px solid var(--brand);
          transform: rotate(45deg);
          transition: transform 0.2s ease;
          margin-bottom: 4px; }
.esp.mg-faqs-birmingham.v2 .answer { max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
        padding: 0 16px; 
        border-top: 1px solid transparent;
        font-size: 14.5px; line-height: 1.7; color: #333; }
.esp.mg-faqs-birmingham.v2 details[open] .answer { border-top: 1px solid var(--line);
        padding-bottom: 16px;
        opacity: 1; 
        max-height: none; }

/* === GLOBAL FOOTER ACCESSIBLE CONTRAST === */
.esp-global-footer,.esp-global-footer p,.esp-global-footer span,.esp-global-footer strong{color:#f3f4f6!important}
.esp-global-footer a{color:#fff!important;text-decoration-color:#fcb017!important}
.esp-global-footer a:hover,.esp-global-footer a:focus{color:#fcb017!important}


/* === GLOBAL HONEYPOT VISIBILITY FIX === */
input[name="company_site"] {
  position: fixed !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}