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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    border-bottom: 1px solid #e5e7eb;
}

header h1 {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero {
    background-color: #f8fafc;
}

.hero h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
}

section h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

section p {
    margin-bottom: 16px;
    color: #374151;
}

section ul {
    list-style: none;
    padding-left: 0;
}

section ul li {
    margin-bottom: 10px;
    padding-left: 16px;
    position: relative;
}

section ul li::before {
    content: "–";
    position: absolute;
    left: 0;
}

.alt {
    background-color: #f9fafb;
}

.contact a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

footer {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #6b7280;
}