:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --bg: #ffffff;
    --text: #333333;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    max-width: 650px; /* Updated from 750px to match new style */
    margin: 60px auto; 
    padding: 0 30px; 
    color: var(--text);
    background-color: var(--bg);
}

header { 
    border-bottom: 3px solid var(--primary); 
    margin-bottom: 30px; 
    padding-bottom: 10px;
}

h1 { 
    color: var(--primary); 
    margin: 0; 
    font-size: 2rem; /* Updated from 2.5rem to match new style */
}

.subtitle { 
    font-weight: 600; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.9rem; 
}

.back-link { 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    display: block; 
    color: var(--accent); 
    text-decoration: none; 
    text-transform: uppercase; 
    font-weight: bold; 
}

.status-tag { 
    display: inline-block;
    background: #f1f1f1; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    color: #666;
    margin-bottom: 20px;
}

section { margin: 40px 0; }

/* Box Components */
.contact-box { 
    background: #f8f9fa; 
    padding: 25px; 
    border-left: 5px solid var(--primary);
    border-radius: 4px;
}

.highlight-box { 
    background: #f9f9f9; 
    padding: 20px; 
    border-radius: 8px; 
    border-left: 5px solid var(--primary); 
    margin: 25px 0;
}

/* Form Styling */
.form-group { margin-bottom: 1.5rem; }

label { 
    display: block; 
    font-weight: bold; 
    margin-bottom: 5px; 
    font-size: 0.95rem; 
}

input, textarea { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    font-family: inherit;
    font-size: 1rem;
}

/* Specific override for the old email input style if still used */
input[type="email"] { width: 100%; }

button { 
    width: 100%;
    padding: 15px; 
    background: var(--primary); 
    color: white; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.2s ease;
}

button:hover { background: #34495e; }

button:disabled { 
    background: #95a5a6; 
    cursor: not-allowed; 
}

#form-status { 
    margin-top: 20px; 
    text-align: center; 
    font-weight: bold; 
    padding: 15px;
    border-radius: 4px;
    display: none; 
}

footer { 
    margin-top: 60px; 
    font-size: 0.8rem; 
    color: #999; 
    text-align: center;
}

/* --- CONSOLIDATED NAVIGATION STYLES --- */

/* Reset the dynamic header container */
#site-header .main-header {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 44px;
}

/* Hide the checkbox logic */
.nav-toggle {
    display: none;
}

/* Hamburger Icon Styling */
.nav-toggle-label {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    z-index: 1000;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary);
    height: 2px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before { content: ''; position: absolute; top: -8px; left: 0; width: 25px; height: 2px; background: var(--primary); }
.nav-toggle-label span::after { content: ''; position: absolute; top: 8px; left: 0; width: 25px; height: 2px; background: var(--primary); }

/* Desktop View (Above 600px) */
@media screen and (min-width: 601px) {
    .nav-menu {
        display: flex;
        gap: 20px;
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .nav-menu a:hover {
        color: var(--accent);
    }
}

/* Mobile View (Below 600px) */
@media screen and (max-width: 600px) {
    body {
        margin: 20px auto; /* Reduced top margin for better mobile spacing */
    }

    .nav-toggle-label { 
        display: block; 
    }
    
    .nav-menu {
        position: absolute;
        top: 40px; /* Sits right under the hamburger */
        left: -30px; /* Aligns with the 30px padding on your body */
        width: calc(100% + 60px); /* Spans the full width of the screen */
        background: white;
        display: none;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 10px 0;
        border-bottom: 2px solid var(--primary);
    }

    .nav-menu a {
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        color: var(--primary);
        font-weight: bold;
    }

    /* Toggle visibility when checked */
    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }
    
    /* Animate hamburger to X */
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); top: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
}
/* reca.help Grid-Focused Stylesheet */

:root {
    --text: #222;
    --accent: #990000;
    --bg: #ffffff;
    --border-dark: #333;
    --border-light: #ddd;
    --row-hover: #f9f9f9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

header { border-bottom: 3px solid var(--text); margin-bottom: 2.5rem; }
nav a { text-decoration: none; font-weight: bold; color: #000; text-transform: uppercase; font-size: 0.85rem; }
h1 { font-size: 2.2rem; margin: 0.5rem 0; letter-spacing: -0.5px; }
h2 { margin-top: 2.5rem; text-transform: uppercase; font-size: 1.1rem; letter-spacing: 1px; color: var(--accent); }

.intro-text { font-size: 1.1rem; color: #666; margin-bottom: 1rem; }

.callout {
    border: 1px solid var(--border-dark);
    padding: 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: #fff;
}

/* Grid Table Styling */
.table-container { overflow-x: auto; margin: 2rem 0; }
.grid-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--border-dark); /* Strong outer grid */
}

.grid-table th, .grid-table td {
    padding: 14px;
    border: 1px solid var(--border-light); /* Internal grid lines */
    text-align: left;
}

.grid-table th {
    background: var(--text);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.grid-table tr:nth-child(even) { background-color: #fcfcfc; }
.grid-table tr:hover { background-color: var(--row-hover); }

.clean-list { padding-left: 1.2rem; }
.clean-list li { margin-bottom: 0.8rem; }

footer {
    margin-top: 4rem;
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}
.timeline-item {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
    position: relative;
}

.timeline-item h3 {
    margin-top: 0;
    color: var(--text);
    font-size: 1.2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
}
.content-image-container {
    margin: 2rem 0;
    text-align: center;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

figcaption {
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
}
/* Container for the FAQ map */
.faq-map-container {
    margin: 1.5rem 0;
    text-align: center;
    max-width: 100%; /* Ensures it stays within the page margins */
}

/* Restraining the image size */
.responsive-map {
    width: 100%;
    max-width: 650px; /* Limits the size on large desktop screens */
    height: auto;     /* Maintains aspect ratio */
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-caption {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}