/* --- General Setup & Variables --- */
:root {
    --primary-color: #005f73;
    --secondary-color: #0a9396;
    --accent-color: #e9d8a6;
    --background-color: #f8f9fa;
    --text-color: #212529;
    --light-gray: #e9ecef;
    --dark-gray: #6c757d;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    color: var(--primary-color);
    font-weight: 600;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

/* --- Header & Footer --- */
.header, .footer {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}
.footer {
    border-top: 1px solid var(--light-gray);
    border-bottom: none;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}
.header .container, .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 40px; }
.logo h1 { font-size: 1.5rem; margin: 0; }
nav { display: flex; gap: 1rem; }

/* --- Tool Page Specific --- */
.legal-wrapper .micro-banner {
    background-color: var(--accent-color);
    color: var(--text-color);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .header .container { flex-direction: column; gap: 1rem; }
    nav { margin-top: 0.5rem; }
}