:root,body {
    --bg-cream: #F9F8F4;
    --bg-white: #FFFFFF;
    --bg-dark: #140F2D; /* Dark Navy for Footer/Text */
    --accent-yellow: #ec8d53; /* The specific yellow from the image */
    --accent-green: #38C7A0; /* New: Green for Success/Shift Side */
    --text-dark: black;
    --text-grey: #545454;
    --border-color: #E5E5E5;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    display: block;
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

/* Notification Bar (top, fixed on desktop) */
.notification-bar {
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 12px 0px;
    font-size: 0.9rem;
}

.notification-bar a { color: var(--accent-yellow); text-decoration: underline; cursor: pointer; }

/* Navbar */
.navbar { padding: 14px 0; max-width: 1080px; margin: 45px auto; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.nav-logo { height: 10vh; width: auto; }
.nav-actions .primary-btn.small { margin-left: 8px; }

/* Main wrapper and content */
/* Main wrapper and content */
.main-wrapper {
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    width: 100%; /* NEW: Force wrapper to full screen width */
    overflow-x: hidden; /* NEW: Prevent horizontal scrolling */
}

.content-container {
    flex: 1;
    width: 100%; /* NEW: Force container to full screen width */
    box-sizing: border-box; /* NEW: Ensures padding doesn't break the width */
}

/* Section headings */
.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    
}
.section-subheading {
    font-size: 1.05rem;
    color: var(--text-grey);
    margin-top: 8px;
}
.highlight-comparison-section{
    
        background: linear-gradient(180deg, transparent 60%, var(--accent-yellow) 60%); 
    transition: background 0.3s ease;
}
/* Grid for legal cards */
.legal-links-grid { max-width: 1200px; margin: 18px auto; padding: 0 24px; }
.conversations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Card styling matches lead gen conversation-card */
.conversation-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.conversation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.legal-card .legal-doc-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-green);
    text-decoration: underline;
}
.legal-card .legal-doc-title:hover {
    color: var(--bg-dark);
    text-decoration: underline;
}
.convo-quote {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Buttons (primary & secondary matches lead gen) */
.primary-btn, .secondary-btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.2s ease-in-out;
}

.primary-btn {
    background-color: var(--accent-yellow);
    color: white;
    padding: 14px 30px;
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(255, 186, 144, 0.25);
}
.primary-btn.small {
  padding: 14px 30px;
    font-size: 1rem;
}
.primary-btn:hover { transform: translateY(-2px); }

.secondary-btn {
    background: var(--bg-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
}
.secondary-btn:hover { background: #2a2548; transform: translateY(-1px); }

/* Footer CTA (dark banner like lead gen) */
.footer-cta {
    max-width: 1080px;
    margin: 36px auto;
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2b2545 100%);
    color: white;
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.cta-text { flex: 1; }
.cta-text h2 { color: white; font-size: 1.8rem; margin-bottom: 10px; line-height: 1.15; font-weight: 800; }
.cta-text p { color: #dcd6e8; margin-bottom: 18px; }
.cta-image img { max-width: 260px; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

/* Footer (dark with white logo) */
.footer-container {
    background-color:var(--bg-dark);
    color: white;
    padding: 0.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top-row, .footer-middle-row, .footer-bottom-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    padding: 10px 0;
}
.footer-top-row {
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.footer-middle-row {
    border-top: 1px solid #ccc;

    justify-content: center;
}
.footer-bottom-row {
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.footer-section {
    flex: 1;
   
    font-size: 0.95rem;
    text-align: left;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: center;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-item {
    display: block;
    padding: 7px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #ec8d53 !important;
    font-weight: 700;
    text-decoration: none;
}
.footer-link-item:hover {
    color: white;
    text-decoration: none;
}
.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #aaa;
}
.footer-copyright {
    color: #aaa;
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
}
.logo-area{
    align-items: center;
}
.footer-advisory-disclosure {
    text-align: center;
    flex: 1;
   
}
.footer-advisory-disclosure .footer-disclosure {
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.TopBar{
     display: flex;
    justify-content: center;  /* centers horizontally */
    align-items: center;      /* centers vertically */
}
.footer-logo { height: 60px; width: auto; }
/* Responsive */
@media (max-width: 768px) {
        .TopBar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        background: var(--bg-cream);
    }
    .main-wrapper{
        margin-top: 5rem;
    }
    .footer-section {
   
    text-align: center;
}
    .footer-cta { flex-direction: column; text-align: center; gap: 16px; }
    .cta-image img { max-width: 55vw; }
    .nav-flex { justify-content: center; }
    .nav-actions { display: none; } hide desktop CTA on small screens like lead gen
    .notification-bar {
        font-size: 0.9rem;
        padding: 3px 1px;
    }
    .conversation-card { padding: 12px; }
    .legal-links-grid { padding: 0 12px; }
      .nav-logo { height: 50px; }
      .footer-contact {
  
    align-items: center;
    text-align: center;
}
.navbar{
    margin: 0px auto;
}
}

@media (max-width: 480px) {
    .section-heading { font-size: 1.6rem; }
    .notification-bar { font-size: 0.85rem; }

    .legal-card .legal-doc-title { font-size: 1.05rem; }
}
@media (min-width: 768px) {
  
}