/* --- VARIABLES --- */
:root {
    --primary: #10B981;
    --text-black: #000000;
    --text-gray-600: #ebeef3;
    --text-gray-700: #c7cbd1;
    --bg-gray-50: #f9fafb;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--text-black);
    line-height: 1.5;
}

/* --- LAYOUT --- */
.page-container {
    padding-top: 8rem; /* pt-32 */
    padding-bottom: 5rem; /* pb-20 */
}

.content-wrapper {
    width: 100%;
    max-width: 56rem; /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* --- TYPOGRAPHY --- */
.page-title {
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.text-primary {
    color: var(--primary);
}

.prose section {
    margin-bottom: 2rem; /* mb-8 */
}

.last-updated {
    color: var(--text-gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.section-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 1rem;
}

.subsection-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.text-body {
    color: var(--text-gray-700);
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem;
    font-size: 1.125rem; /* prose-lg équivalent */
}

/* --- LISTS --- */
.list-styled {
    list-style-type: disc;
    list-style-position: inside;
    color: var(--text-gray-700);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list-styled li {
    margin-bottom: 0.5rem; /* space-y-2 */
}

/* --- CONTACT CARD --- */
.contact-card {
    background-color: var(--bg-gray-50);
    padding: 1.5rem; /* p-6 */
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 1.125rem;
}

.contact-card p {
    color: var(--text-gray-700);
    margin-bottom: 0.5rem; /* mb-2 */
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 640px) {
    .page-container {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .page-title {
        font-size: 2.25rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .text-body, .list-styled, .contact-card {
        font-size: 1rem;
    }
}