body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #111;
    font-size: 16px;
}

header {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

nav {
    display: flex;
    gap: 35px;
    justify-content: center;
    font-size: 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #000;
}

.hero {
    margin-top: 130px;
    text-align: center;
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 17px;
    color: #555;
    margin-top: 18px;
}

/* TYPOGRAPHY */

.section-block {
    max-width: 850px;
    margin: 120px auto;
    padding: 0 20px;
}

.section-block h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
    color: #111;
}

.section-block p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0 0 24px 0;
    text-align: left;
    max-width: 800px;
}

.section-block p + p {
    margin-top: 20px;
}

.section-block ul {
    margin: 10px 0 30px 0;
    padding-left: 18px;
}

.section-block li {
    margin-bottom: 6px;
}

footer {
    margin-top: 120px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    padding-bottom: 40px;
}

