@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --color-accent: #2563EB;
    --color-text: #111827;
    --color-sub: #4B5563;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: #FAFAFA;
    margin: 0;
    padding: 0;
}

/* Header */
.policy-nav {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    padding: 20px;
    text-align: center;
}
.brand {
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    color: #000;
}
.brand span {
    color: var(--color-accent);
    font-family: 'JetBrains Mono', monospace;
    background: #EFF6FF;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Content */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.content-wrapper { padding: 40px; }

h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 10px; }
h2 { font-family: 'Playfair Display', serif; margin-top: 30px; font-size: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 10px; }
h3 { font-size: 1.1rem; margin-top: 20px; font-weight: 600; }
p { margin-bottom: 15px; color: var(--color-sub); }
ul { margin-bottom: 15px; padding-left: 20px; color: var(--color-sub); }
li { margin-bottom: 8px; }

/* Contact Form Styling */
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #D1D5DB; border-radius: 6px; font-family: inherit; }
button.submit-btn {
    background: #000; color: white; border: none; padding: 12px 30px;
    border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
button.submit-btn:hover { background: #333; }

.back-link { display: inline-block; margin-bottom: 20px; text-decoration: none; color: var(--color-accent); font-weight: 500; }

/* Mobile */
@media (max-width: 600px) {
    .content-wrapper { padding: 20px; }
    h1 { font-size: 1.8rem; }
}