/* --- Extracted & Consolidated Variables --- */
:root {
    --primary: #7B2F18;    /* brand brown */
    --accent: #FCE6C8;     /* pale peach */
    --bg: #ffffff;
    --ink: #1a1a1a;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --gap: 32px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- Base & Utility Styles --- */
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 1000px; /* Narrower container for better readability of text content */
    margin: 0 auto;
    padding: 0 20px;
}

/* List utility for cleaner formatting */
.clean-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 1.5rem 0;
}
.clean-list li {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
}
.clean-list li::before {
    content: "\f058"; /* Check-circle solid icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Section --- */
.financing-hero {
    padding: 1rem 0 1rem;
    text-align: center;
    background-color: var(--accent);
    border-bottom: 5px solid var(--primary);
}
.financing-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.financing-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 750px;
    margin: 0.5rem auto 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: background 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
    background: #5c220f; /* Slightly darker primary */
    text-decoration: none;
}

/* --- Jump Navigation (Updated for subtle highlight) --- */
.jump-nav {
    background-color: var(--bg);
    border-bottom: 1px solid var(--accent);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    /* Make it sticky */
    position: sticky;
    top: 0; 
    z-index: 100;
}
.jump-nav .container {
    display: flex;
    justify-content: center;
    gap: 20px; 
}
.jump-link {
    display: block;
    padding: 10px 20px; 
    font-family: var(--font-heading);
    font-size: 1rem; 
    font-weight: 700; 
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius); 
    transition: all 0.2s;
    white-space: nowrap;
    
    /* --- SUBTLE VISIBLE HIGHLIGHT --- */
    /* Using a light, semi-transparent version of the accent color as background */
    background-color: rgba(252, 230, 200, 0.4); 
    border: 1px solid var(--accent); 
}
/* Strong highlight on hover/focus */
.jump-link:hover, .jump-link:focus {
    color: var(--bg); 
    background-color: var(--primary); 
    border-color: var(--primary);
    transform: translateY(-1px); 
    box-shadow: 0 4px 10px rgba(123, 47, 24, 0.3); 
    text-decoration: none; 
}

/* --- Content Section --- */
.policy-content-section {
    padding: 4rem 0;
}

/* Adjust for sticky jump-nav bar, creates a small gap when jumping */
.policy-section {
    padding-top: 30px; 
    margin-top: -45px; 
}

.policy-content-section h2, .policy-content-section h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-top: 2rem;
    border-bottom: 1px dashed var(--accent);
    padding-bottom: 5px;
}
.policy-content-section h2:first-of-type {
    margin-top: 0; /* Remove top margin for the first H2 */
}

/* --- Accordion (FAQ) Styles --- */
.accordion-item {
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,.03);
}
.accordion-header {
    background: var(--bg);
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}
.accordion-header i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.accordion-header.active i {
    transform: rotate(180deg);
}
.accordion-content {
    background: var(--accent);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    border-top: 1px solid rgba(123, 47, 24, 0.1);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .financing-hero h1 {
        font-size: 2.5rem;
    }
    .clean-list {
        flex-direction: column;
        gap: 8px;
    }
    .jump-nav .container {
        flex-direction: column;
        gap: 5px;
    }
    .jump-link {
        text-align: center;
    }
    .financing-hero {
    padding: 3rem 0 3rem;
    }
}