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

:root {
    --primary: #10b981; /* Emerald */
    --primary-hover: #059669;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    padding: 2rem 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }
    body {
        padding: 1rem 0.5rem;
    }
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge {
    display: inline-block;
    background: #ecfdf5;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    border: 1px solid #a7f3d0;
}

section {
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background-color: var(--primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--text-main);
}

p {
    margin-bottom: 1rem;
    color: #334155;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #334155;
}

li {
    margin-bottom: 0.5rem;
}

.contact-box {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.contact-box a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.1s ease;
}

.contact-box a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.placeholder {
    color: #d97706;
    background-color: #fef3c7;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 500;
}
