/* --- 1. RESET & VARIABLES --- */
:root {
    /* UPDATED: Blue visible on both White & Black backgrounds */
    --primary: #2563eb;        
    --primary-dark: #1d4ed8;   /* Slightly darker for hover states */
    --secondary: #f0f9ff;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --font-main: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #f8fafc;
    overflow-x: hidden;
    /* Base font size slightly reduced if needed, but controlling via elements below */
}

/* Ensure all links strictly use this color */
a { 
    text-decoration: none; 
    color: var(--primary); 
    transition: 0.2s; 
    font-weight: 500; 
}

a:hover {
    color: var(--primary-dark);
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.2); 
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER LAYOUT --- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem; /* Stepped down from 1rem */
    z-index: 1002;
    text-decoration: none;
}
.logo-img img { height: 35px; width: auto; }
.logo span { display: block; }

/* --- 3. NAVIGATION --- */
.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    font-size: 0.85rem; /* Stepped down from 0.9rem */
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
}
.main-nav a:hover { color: var(--primary); }

/* --- 4. BUTTON VISIBILITY LOGIC --- */
.mobile-cta { display: none !important; }

.desktop-cta { 
    display: inline-flex !important; 
    padding: 8px 20px; 
    background: var(--primary); 
    color: white; 
    border-radius: var(--radius); 
    font-weight: 600; 
    font-size: 0.85rem; /* Stepped down */
    transition: 0.2s; 
}
.desktop-cta:hover { background: var(--primary-dark); }

/* --- 5. HAMBURGER ICON --- */
.hamburger {
    display: none; 
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1002;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-dark);
    border-radius: 2px;
}
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- 6. MOBILE MENU LOGIC --- */
@media (max-width: 900px) {
    .logo span { display: none; }
    .hamburger { display: block; } 
    .desktop-cta { display: none !important; }
    
    .mobile-cta { 
        display: inline-block !important; 
        width: 100%; 
        text-align: center; 
        margin-top: 10px; 
        padding: 12px; 
        background: var(--primary); 
        color: white; 
        border-radius: var(--radius); 
        font-weight: 600; 
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
    }

    .main-nav.active {
        transform: translateX(0);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .main-nav a {
        font-size: 1.1rem; /* Stepped down from 1.2rem */
        font-weight: 600;
        color: var(--text-dark);
    }
}

/* --- 7. HOME HERO STYLING --- */
.hero { 
    background: radial-gradient(circle at top right, #172554, #0f172a); 
    color: white; 
    position: relative; 
    overflow: hidden; 
}
.hero-slider { display: grid; grid-template-areas: "stack"; }
.hero-slide { 
    grid-area: stack; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.5s; 
    padding: 20px 0; /* UPDATED: 20px padding */
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.hero-content h1 { 
    font-size: 2.2rem; /* Stepped down from 2.5rem */
    margin-bottom: 20px; 
}

.hero-content p {
    font-size: 0.95rem; /* Stepped down */
    line-height: 1.6;
}

.compliance-card { 
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(10px); 
    padding: 30px; 
    border-radius: 12px; 
    border: 1px solid rgba(255,255,255,0.2); 
    text-align: center; 
}
.compliance-card strong { display: block; font-size: 1.6rem; margin-bottom: 10px; } /* Stepped down from 1.8rem */
.compliance-card span { font-size: 0.9rem; }

/* --- SECTIONS --- */
.industry-section { padding: 60px 0; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.industry-card { 
    background: white; 
    border: 1px solid var(--border); 
    padding: 25px; 
    border-radius: var(--radius); 
    position: relative; 
    transition: 0.2s; 
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.industry-card h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); } /* Reduced header size */
.industry-card p { font-size: 0.9rem; color: var(--text-gray); }

.industry-expand { display: none; margin-top: 15px; border-top: 1px solid #f1f5f9; padding-top: 15px; font-size: 0.85rem; }
.industry-card.active .industry-expand { display: block; }
.chevron { position: absolute; top: 25px; right: 25px; font-size: 0.8rem; }

.light-yellow { border-top: 3px solid #facc15; }
.light-blue { border-top: 3px solid #3b82f6; }

/* Regulatory Section Layout */
.regulatory-section { background: var(--secondary); padding: 60px 0; }
.regulatory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.regulatory-content h2 {
    font-size: 2rem; /* Stepped down from 2.5rem */
    margin-bottom: 20px;
    color: var(--text-dark);
}
.regulatory-content p {
    font-size: 1rem; /* Stepped down from 1.1rem */
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}
.live-badge {
    color: #dc2626;
    font-weight: 700;
    background: #fee2e2;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem; /* Stepped down */
    display: inline-block;
    margin-bottom: 15px;
}

/* Reusing Blog Card for Regulatory Feed */
.reg-card-body { padding: 25px; } /* Legacy class support if needed */

.reg-impact { 
    padding: 2px 8px; 
    border-radius: 4px; 
    font-size: 0.7rem; 
    font-weight: 600; 
    text-transform: uppercase; 
}
.impact-high { background: #fee2e2; color: #991b1b; }
.impact-medium { background: #ffedd5; color: #9a3412; }
.impact-low { background: #dcfce7; color: #166534; }

.final-cta { padding: 60px 0; background: white; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.cta-content h2 { font-size: 2rem; margin-bottom: 15px; } /* Stepped down */
.cta-content p { font-size: 1rem; margin-bottom: 25px; }

.cta-form-card { background: #f8fafc; padding: 30px; border-radius: 12px; }
.cta-form-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.cta-form-card p { font-size: 0.9rem; margin-bottom: 20px; }
.cta-form-card input, .cta-form-card button { width: 100%; padding: 10px; margin-bottom: 10px; border-radius: var(--radius); border: 1px solid var(--border); font-size: 0.9rem; }
.cta-form-card button { background: var(--text-dark); color: white; cursor: pointer; }

.btn { display: inline-block; padding: 10px 24px; border-radius: var(--radius); font-weight: 600; text-align: center; font-size: 0.9rem; }
.btn-light { background: white; color: var(--primary); }
.btn-outline { border: 1px solid rgba(255,255,255,0.5); color: white; }
.btn-outline-dark { border: 1px solid var(--border); color: var(--text-dark); }

/* MOBILE ADJUSTMENTS FOR MAIN CONTENT */
@media (max-width: 900px) {
    .hero-grid, .regulatory-grid, .cta-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 1.8rem; } /* Stepped down from 2rem */
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .regulatory-content p { margin: 0 auto 30px auto; }
} 

/* --- FOOTER STYLES --- */
.site-footer {
    background-color: #f8fafc;
    border-top: 1px solid var(--border);
    padding: 60px 0 0 0;
    font-size: 0.85rem; /* Stepped down from 0.9rem */
    color: var(--text-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 50px;
}

.site-footer h4 {
    color: var(--text-dark);
    font-size: 0.95rem; /* Stepped down from 1rem */
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    margin: 20px 0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-brand .logo span {
    display: block !important; 
    color: var(--text-dark);
}

.site-footer a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 12px;
    transition: 0.2s;
}

.site-footer a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.socials { display: flex; gap: 10px; }
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 0;
}
.socials a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary);
}

.site-footer p { margin-bottom: 10px; }

.footer-bottom {
    background-color: #f1f5f9;
    border-top: 1px solid var(--border);
    padding: 20px 0;
    font-size: 0.75rem; /* Stepped down from 0.85rem */
    text-align: center;
}

/* --- FOOTER MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    .footer-brand p { max-width: 100%; }
}

/* =========================================
   PAGE SPECIFIC CSS
   ========================================= */

/* --- 1. PAGE HERO (General) --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 20px 0; /* UPDATED: 20px padding */
    text-align: center;
}

.page-hero-content { max-width: 800px; margin: 0 auto; }

.page-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem; /* Stepped down from 0.85rem */
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero h1 {
    font-size: 2.4rem; /* Stepped down from 2.8rem */
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1rem; /* Stepped down from 1.1rem */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- 2. SERVICES OVERVIEW --- */
.services-overview { padding: 80px 0; background: var(--white); }
.section-header.center { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary); }

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem; /* Stepped down */
    background: #f1f5f9;
    margin-bottom: 20px;
}

/* Icon Color Variants */
.service-icon.green { background: #dcfce7; color: #166534; }
.service-icon.purple { background: #f3e8ff; color: #6b21a8; }
.service-icon.red { background: #fee2e2; color: #991b1b; }
.service-icon.yellow { background: #fef3c7; color: #92400e; }
.service-icon.blue { background: #e0f2fe; color: #075985; }

.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); } /* Stepped down */
.service-card ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
    color: var(--text-gray);
    font-size: 0.85rem; /* Stepped down */
    flex-grow: 1;
}
.service-card li { margin-bottom: 6px; }
.service-actions { margin-top: auto; }

/* --- 3. PROCESS TIMELINE --- */
.process-section { padding: 80px 0; background: var(--secondary); overflow: hidden; }
.process-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #cbd5e1;
    transform: translateX(-50%);
}

.process-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; position: relative; }
.process-row.left { flex-direction: row; }
.process-row.right { flex-direction: row-reverse; }

.process-card {
    width: 45%;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    position: relative;
}

.process-card h4 { color: var(--primary); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.process-card h4 span { font-size: 0.7rem; background: #f1f5f9; padding: 2px 8px; border-radius: 4px; color: var(--text-gray); }
.process-card strong { display: block; margin-top: 15px; font-size: 0.85rem; color: var(--text-dark); }
.process-card ul { list-style: none; padding: 0; margin-top: 5px; font-size: 0.8rem; color: var(--text-gray); }
.process-card li::before { content: "•"; color: var(--primary); display: inline-block; width: 1em; margin-left: -1em; }

.process-step {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    border: 4px solid var(--secondary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.process-actions { text-align: center; margin-top: 40px; position: relative; z-index: 2; }

/* --- 4. PRICING COMPARE TABLE --- */
.pricing-compare { padding: 80px 0; background: var(--white); }
.pricing-table { overflow-x: auto; margin-top: 40px; border: 1px solid var(--border); border-radius: var(--radius); }
.pricing-table table { width: 100%; border-collapse: collapse; min-width: 700px; }

.pricing-table th {
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid var(--border);
    color: var(--text-dark);
    font-size: 0.95rem;
}
.pricing-table th:first-child { text-align: left; }
.pricing-table th span { display: block; font-size: 0.75rem; color: var(--text-gray); font-weight: 500; margin-top: 5px; }

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}
.pricing-table td:first-child { text-align: left; font-weight: 500; color: var(--text-dark); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) { background-color: #fcfcfc; }

/* --- 5. CALCULATOR --- */
.pricing-calculator { padding: 80px 0; background: linear-gradient(to bottom, #f8fafc, #edf2f7); }
.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.calculator-config h4 { margin-bottom: 20px; font-size: 1.1rem; }
.calculator-config label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.85rem; color: var(--text-dark); }
.calculator-config select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 0.9rem;
}

.addon {
    background: #f8fafc;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}
.addon:hover { border-color: var(--primary); }
.addon input { width: 18px; height: 18px; accent-color: var(--primary); }

.calculator-result {
    background: #1e293b;
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}
.calculator-result h4 { color: white; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; font-size: 1rem; }
.price-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; }
.price-row.column { flex-direction: column; gap: 5px; }
.price-row ul { padding-left: 0; margin: 0; list-style: none; font-size: 0.8rem; color: #94a3b8; }
.calculator-result hr { border: 0; border-top: 1px solid rgba(255,255,255,0.2); margin: 20px 0; }

.price-total { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.price-total strong { font-size: 1.35rem; color: #4ade80; }
.price-note { display: block; color: #64748b; font-size: 0.75rem; margin-top: 10px; text-align: center; }
.price-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 25px; }
.price-footnote { margin-top: 20px; font-size: 0.7rem; color: #94a3b8; line-height: 1.4; text-align: center; }

/* --- 6. ASSESSMENT WIZARD --- */
.assessment-section { padding: 80px 0; background: var(--white); }
.assessment-content {
    max-width: 600px;
    margin: 40px auto;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.assessment-step { display: none; text-align: center; animation: fadeIn 0.4s ease; }
.assessment-step.active { display: block; }

.assessment-icon {
    font-size: 2.5rem; /* Stepped down */
    margin-bottom: 15px;
    background: #f0f9ff;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.assessment-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.assessment-step p { color: var(--text-gray); margin-bottom: 30px; font-size: 0.95rem; }

.assessment-form { text-align: left; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.85rem; }
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.recommendations { display: grid; gap: 15px; text-align: left; }
.recommend-card { background: #f0fdf4; border: 1px solid #bbf7d0; padding: 15px; border-radius: 8px; }
.recommend-card h4 { color: #166534; font-size: 0.95rem; margin-bottom: 5px; }
.recommend-card p { font-size: 0.85rem; color: #14532d; margin: 0; }

.assessment-nav { display: flex; justify-content: space-between; max-width: 600px; margin: 20px auto 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .page-hero h1 { font-size: 1.8rem; }
} 

/* =========================================
   REGULATIONS LIBRARY CSS
   ========================================= */

/* --- 1. HERO MODIFIERS (Compact Version) --- */
.page-hero-sm {
    padding: 20px 0; /* UPDATED: 20px padding */
    text-align: left; 
}
.page-hero-inline { display: flex; align-items: center; gap: 25px; }
.hero-icon {
    font-size: 2rem; /* Stepped down */
    background: rgba(255, 255, 255, 0.15);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- 2. SEARCH BAR --- */
.blog-filters {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
    position: sticky;
    top: 70px; 
    z-index: 900;
}
.filter-row { display: flex; gap: 15px; align-items: center; }
.filter-row input {
    flex: 1; 
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    outline: none;
    transition: 0.2s;
}
.filter-row input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--secondary); }
.results-count { color: var(--text-gray); font-size: 0.85rem; white-space: nowrap; margin-left: 10px; }

/* --- 3. MAIN GRID LAYOUT --- */
.blog-main { padding: 60px 0; background: #f8fafc; }
.blog-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

/* --- 4. PAGINATION BAR --- */
.blog-pagination-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: var(--white);
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.blog-pagination-top a { font-weight: 600; color: var(--primary); font-size: 0.85rem; }
.blog-pagination-top a:hover { text-decoration: underline; }
.page-status { color: var(--text-gray); font-size: 0.8rem; font-weight: 500; }

/* --- 5. REGULATION CARDS (FIXED FOR GRID) --- */
.blog-list { 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column; 
    height: 100%; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }

.blog-tag {
    display: inline-block;
    background: #e0f2fe;
    color: var(--primary);
    font-size: 0.7rem; /* Stepped down */
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-content { display: flex; flex-direction: column; flex-grow: 1; }
.blog-content h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text-dark); line-height: 1.3; }
.blog-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Meta Data (Footer) */
.blog-meta {
    margin-top: auto; 
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    flex-wrap: wrap;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta a { margin-left: auto; color: var(--primary); font-weight: 600; font-size: 0.85rem; }

/* Mobile: Switch back to 1 column */
@media (max-width: 768px) {
    .blog-list { grid-template-columns: 1fr; }
}

/* --- 6. SIDEBAR --- */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 25px; }
.sidebar-box h4 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li { margin-bottom: 15px; }
.sidebar-list a { display: block; font-weight: 500; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; font-size: 0.9rem; }
.sidebar-list a:hover { color: var(--primary); }
.sidebar-list .muted { font-size: 0.75rem; color: #94a3b8; }

/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; gap: 30px; }
    .filter-row { flex-direction: column; gap: 10px; }
    .filter-row input, .filter-row button { width: 100%; }
    .results-count { margin-left: 0; margin-top: 5px; text-align: center; width: 100%; display: block; }
    .page-hero-inline { flex-direction: column; text-align: center; }
    .blog-meta { gap: 10px; }
    .blog-meta a { margin-left: 0; margin-top: 10px; width: 100%; text-align: right; }
}

/* =========================================
   ABOUT US PAGE CSS
   ========================================= */

/* --- 1. ABOUT HERO --- */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 20px 0; /* UPDATED: 20px padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem; /* Stepped down */
    font-weight: 500;
    margin-bottom: 25px;
    color: #e0f2fe;
}
.about-hero h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 15px; letter-spacing: -0.02em; }
.hero-subtext { font-size: 1rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 40px; max-width: 650px; margin-left: auto; margin-right: auto; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 0.75rem; color: var(--white); margin-bottom: 5px; }
.hero-stat span { font-size: 0.65rem; color: #94a3b8; }

/* --- 2. OUR STORY SECTION --- */
.about-story { padding: 100px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; align-items: center; }
.section-eyebrow { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.story-text h2 { font-size: 2rem; margin-bottom: 25px; line-height: 1.2; color: var(--text-dark); }
.story-text p { color: var(--text-gray); margin-bottom: 20px; line-height: 1.7; font-size: 0.95rem; }

.story-image { position: relative; padding: 20px; }
.story-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); background: #f8fafc; }
.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
    min-width: 160px;
    text-align: center;
}
.experience-badge strong { display: block; font-size: 2rem; line-height: 1; margin-bottom: 5px; }
.experience-badge span { font-size: 0.8rem; opacity: 0.9; }

/* --- 3. INDUSTRIES GRID --- */
.about-industries { padding: 100px 0; background: #f8fafc; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.industry-card { background: var(--white); padding: 30px; border-radius: 12px; border: 1px solid var(--border); transition: all 0.3s ease; }
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05); border-color: var(--primary); }
.industry-icon {
    font-size: 1.75rem;
    margin-bottom: 20px;
    background: #f1f5f9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.industry-card h4 { font-size: 1.15rem; margin-bottom: 12px; color: var(--text-dark); }
.industry-card p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; }

/* --- 4. CTA SECTION --- */
.about-cta { padding: 80px 0; background: var(--primary-dark); color: var(--white); }
.about-cta .cta-grid { display: flex; justify-content: space-between; align-items: center; }
.cta-text { max-width: 600px; }
.cta-text h2 { font-size: 1.8rem; margin-bottom: 15px; }
.cta-text p { font-size: 1rem; color: rgba(255, 255, 255, 0.8); }
.cta-actions { display: flex; gap: 15px; }
.btn-outline-light { border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }

/* --- 5. MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .about-hero { padding: 20px 0; }
    .about-hero h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 30px; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .story-image { order: -1; text-align: center; }
    .experience-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .about-cta .cta-grid { flex-direction: column; text-align: center; gap: 30px; }
    .cta-actions { justify-content: center; width: 100%; }
    .cta-actions .btn { width: 100%; }
}

/* =========================================
   CONTACT PAGE CSS
   ========================================= */

/* --- 1. CONTACT HERO --- */
.contact-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    padding: 20px 0 40px; /* UPDATED: 20px padding top/bottom (adjusted bottom for overlap) */
    text-align: center;
}
.contact-hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-hero .hero-subtext { font-size: 1rem; color: #bfdbfe; max-width: 600px; margin: 0 auto 40px; }
.contact-hero-features { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    min-width: 160px;
}
.feature-card strong { display: block; font-size: 0.9rem; margin-top: 5px; }
.feature-card span { font-size: 0.75rem; color: #bfdbfe; }

/* --- 2. CONTACT MAIN SECTION --- */
.contact-main { background: #f8fafc; padding-bottom: 80px; margin-top: -40px; position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }

/* --- 3. FORM CARD --- */
.contact-form-card { background: var(--white); padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1); border: 1px solid var(--border); }
.contact-form-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text-dark); }
.contact-form-card p { color: var(--text-gray); margin-bottom: 30px; font-size: 0.9rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
    background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--secondary); outline: none; }
.form-group textarea { height: 120px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; font-size: 0.8rem; color: var(--text-gray); }
.form-checkbox input { margin-top: 4px; }
.btn-full { width: 100%; padding: 14px; font-size: 0.95rem; }

/* --- 4. CONTACT INFO CARD --- */
.contact-info-card { background: var(--primary-dark); color: var(--white); padding: 40px; border-radius: 16px; position: sticky; top: 100px; }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.info-block { display: flex; gap: 15px; margin-bottom: 30px; }
.info-block div strong { display: block; font-size: 1rem; margin-bottom: 5px; color: #bfdbfe; }
.info-block p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.8); margin: 0; }

/* --- 5. MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .contact-hero { padding-bottom: 60px; }
    .contact-hero h1 { font-size: 1.8rem; }
    .contact-main { margin-top: 0; padding-top: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 25px; }
    .contact-info-card { position: relative; top: 0; }
}

/* =========================================
   BLOG PAGE EXTENSIONS
   ========================================= */

/* --- 1. BLOG HERO --- */
.blog-hero {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    color: var(--white);
    padding: 20px 0; /* UPDATED: 20px padding */
    text-align: center;
}
.blog-hero-content { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.blog-hero-icon { font-size: 2.5rem; margin-bottom: 15px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)); }
.blog-hero h1 { font-size: 2.2rem; margin-bottom: 10px; color: var(--white); }
.blog-hero p { font-size: 1rem; color: #cbd5e1; max-width: 600px; }

/* --- 2. BLOG THUMBNAIL IMAGE --- */
.blog-thumb {
    height: 200px;
    background-color: #cbd5e1;
    background-image: url('ba-assets/images/blog-default.jpg');
    background-size: cover;
    background-position: center;
    margin: -25px -25px 20px -25px; 
    border-radius: var(--radius) var(--radius) 0 0;
}

/* --- 3. FILTER DROPDOWNS --- */
.filter-row select {
    flex: 1; 
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    background-color: var(--white);
    cursor: pointer;
    outline: none;
    transition: 0.2s;
    color: var(--text-dark);
}
.filter-row select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--secondary); }
@media (max-width: 900px) { .filter-row select { width: 100%; } }

/* =========================================
   SERVICE DETAIL PAGE CSS
   ========================================= */

.services-detail { padding: 80px 0; background: var(--white); min-height: 600px; }
.services-detail-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px; 
    background: #f8fafc;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.services-nav a {
    padding: 12px 15px;
    border-radius: var(--radius);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent; 
}
.services-nav a:hover { background: var(--white); color: var(--primary); transform: translateX(3px); }
.services-nav a.active { background: var(--white); color: var(--primary); font-weight: 700; border-left-color: var(--primary); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

.service-content h2 { font-size: 2rem; margin-bottom: 25px; color: var(--text-dark); line-height: 1.2; }
.service-summary {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    background: #f0f9ff;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}
.service-content h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-dark); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.service-content ul { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 40px; }
.service-content li { position: relative; padding-left: 30px; line-height: 1.6; color: var(--text-gray); font-size: 0.9rem; }
.service-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.85rem;
    background: #e0f2fe;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-actions { display: flex; gap: 20px; margin-top: 40px; border-top: 1px solid var(--border); padding-top: 30px; }

@media (max-width: 900px) {
    .services-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-nav {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 15px;
        position: relative;
        top: 0;
        border-bottom: 1px solid var(--border);
    }
    .services-nav a { flex-shrink: 0; border-left: none; border-bottom: 3px solid transparent; background: var(--white); margin-right: 10px; padding: 10px 15px; }
    .services-nav a.active { border-left: none; border-bottom-color: var(--primary); }
    .service-content h2 { font-size: 1.6rem; }
    .service-actions { flex-direction: column; }
    .service-actions a { width: 100%; text-align: center; }
}

/* =========================================
   REGULATION VIEW PAGE CSS
   ========================================= */

.reg-view-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
    padding: 20px 0; /* UPDATED: 20px padding */
    text-align: center;
}
.reg-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #e0f2fe;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.reg-view-hero h1 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.2; }
.reg-summary { font-size: 1rem; color: #cbd5e1; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.reg-view-main { padding: 60px 0; background: #f8fafc; }
.reg-view-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }

.reg-info-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.reg-info-box h3 { font-size: 1.25rem; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border); color: var(--text-dark); }

.reg-meta-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.reg-meta-table tr { border-bottom: 1px solid #f1f5f9; }
.reg-meta-table tr:last-child { border-bottom: none; }
.reg-meta-table td { padding: 15px 0; font-size: 0.9rem; }
.reg-meta-table td:first-child { font-weight: 600; color: var(--text-dark); width: 40%; }
.reg-meta-table td:last-child { color: var(--text-gray); text-align: right; }
.reg-actions { margin-top: 30px; text-align: center; }

.reg-sidebar { position: sticky; top: 100px; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; }
.sidebar-box h4 { font-size: 1.1rem; margin-bottom: 15px; color: var(--primary); }
.sidebar-box p { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 25px; line-height: 1.5; }

@media (max-width: 900px) {
    .reg-view-grid { grid-template-columns: 1fr; gap: 30px; }
    .reg-view-hero h1 { font-size: 1.8rem; }
    .reg-meta-table td { display: block; text-align: left; padding: 5px 0; }
    .reg-meta-table td:first-child { color: var(--text-gray); font-size: 0.8rem; text-transform: uppercase; margin-top: 10px; }
    .reg-meta-table td:last-child { font-weight: 600; color: var(--text-dark); border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
    .reg-meta-table tr { border: none; }
}

/* =========================================
   BLOG VIEW PAGE CSS
   ========================================= */

.blog-view-hero {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    color: var(--white);
    padding: 20px 0; /* UPDATED: 20px padding */
    text-align: center;
    position: relative;
}
.blog-view-hero h1 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; max-width: 900px; margin-left: auto; margin-right: auto; }
.blog-view-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.9rem;
    color: #cbd5e1;
    flex-wrap: wrap;
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}
.blog-view-meta span { display: flex; align-items: center; gap: 8px; }

.blog-view-main { padding: 60px 0; background: #f8fafc; }
.blog-view-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }

.blog-view-content { background: var(--white); padding: 50px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.blog-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
    font-style: italic;
}

/* Blog Typography */
.blog-body { font-size: 1rem; line-height: 1.8; color: #374151; }
.blog-body p { margin-bottom: 25px; }
.blog-body h2, .blog-body h3, .blog-body h4 { color: var(--text-dark); margin-top: 40px; margin-bottom: 15px; line-height: 1.3; font-weight: 700; }
.blog-body h2 { font-size: 1.6rem; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
.blog-body h3 { font-size: 1.3rem; }
.blog-body ul, .blog-body ol { margin-bottom: 25px; padding-left: 20px; color: var(--text-gray); }
.blog-body li { margin-bottom: 10px; }
.blog-body blockquote {
    border-left: 4px solid var(--primary);
    background: #f0f9ff;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
}
.blog-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.blog-body a { color: var(--primary); text-decoration: underline; }
.blog-body a:hover { text-decoration: none; }

@media (max-width: 900px) {
    .blog-view-grid { grid-template-columns: 1fr; gap: 40px; }
    .blog-view-content { padding: 25px; }
    .blog-view-hero h1 { font-size: 1.8rem; }
    .blog-view-meta { gap: 15px; flex-direction: column; align-items: center; }
}

/* --- SCREENING STRIP (Marketing Version) --- */
.screening-strip {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    padding: 20px 0; /* UPDATED: 20px padding */
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.screening-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(37,99,235,0.1) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}
.screening-strip-grid { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.screening-strip-text { max-width: 600px; }
.screening-strip-text h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); font-weight: 700; }
.screening-strip-text p { font-size: 0.75rem; color: #cbd5e1; line-height: 1.5; margin: 0; }
.screening-strip-text strong { color: #60a5fa; }

/* Glowing Button */
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem; /* Stepped down */
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-glow:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .screening-strip { padding: 30px 0; }
    .screening-strip-grid { flex-direction: column; text-align: center; gap: 25px; }
    .screening-strip-text h3 { font-size: 1.2rem; }
    .btn-glow { width: 100%; }
}

/* --- REGULATORY FEED ADD-ONS (Extends .blog-card) --- */
.card-header-label {
    font-size: 1rem; /* Stepped down */
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}
.impact-tag {
    font-size: 0.7rem; /* Stepped down */
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    display: inline-block;
}
.impact-medium { background: #ffedd5; color: #c2410c; }
.impact-high { background: #fee2e2; color: #991b1b; }
.impact-low { background: #dcfce7; color: #166534; }