/* Overall layout structure */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

/* Page wrapper for centralized layout */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 800px;
    margin: 0 auto;
}

/* Header spacing and alignment */
header {
    margin-bottom: 3rem;
    padding: 2rem !important;
}

/* Align header content with main content */
header > div {
    padding-left: 0;
    padding-right: 0;
}

/* Logo styling in header */
header img {
    max-height: 40px;
}

/* Main content area */
main {
    flex: 1;
    padding: 0 2rem 3rem 2rem;
}

/* Footer at bottom */
footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

/* Typography - Larger font sizes */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

ul, ol {
    font-size: 1.125rem;
    line-height: 1.8;
}

li {
    margin-bottom: 0.75rem;
}
