:root {
    --primary: #000000;
    --text-primary: #333333;
    --text-secondary: #666666;
    --background: #ffffff;
    --background-light: #f5f5f5;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --border-radius-md: 8px;
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: var(--background-light);
    color: var(--text-primary);
    margin: 0;
    padding: var(--spacing-md);
}

header {
    background-color: #000000;
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: var(--spacing-lg);
}

.header-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

h2 {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
    margin-bottom: var(--spacing-lg);
}

section {
    margin-bottom: var(--spacing-lg);
}

.text-bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

section > .text-center {
    background-color: #f0f0f0;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid #ccc;
    margin-bottom: var(--spacing-lg);
}

p {
    margin-bottom: var(--spacing-md);
}

section .col-md-12 p {
    display: flex;
    align-items: flex-start;
}

section .col-md-12 p .text-bold {
    min-width: 20px;
    margin-right: 0.5rem;
}
