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

@font-face {
    font-family: 'Elm Sans';
    src: url('fonts/ElmSans-Regular.woff2') format('woff2'),
         url('fonts/ElmSans-Regular.woff') format('woff'),
         url('fonts/ElmSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Elm Sans';
    src: url('fonts/ElmSans-Medium.woff2') format('woff2'),
         url('fonts/ElmSans-Medium.woff') format('woff'),
         url('fonts/ElmSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Elm Sans', sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    border: none;
    border-bottom: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.6;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border: none;
    border-top: none;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.intro {
    font-size: 1.125rem;
    color: #4a4a4a;
}

section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

section p {
    color: #4a4a4a;
}

section a {
    color: #1a1a1a;
    text-decoration: none;
}

section a:hover {
    opacity: 0.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    color: #1a1a1a;
}

.contact-info strong {
    font-weight: 500;
    color: #1a1a1a;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-info a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 2rem;
    }

    main {
        padding: 2rem 2rem;
    }

    h1 {
        font-size: 2rem;
    }
}

