body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: #1e293b;
    background: #f9fafb;
    min-height: 100vh;
}

.container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.resume-container {
    max-width: 50%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 3.75rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }
}

.blue-line {
    width: 6rem;
    height: 0.5px;
    background: #2563eb;
    margin: 1rem auto;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.125rem;
    color: #374151;
    max-width: 40rem;
    margin: 0 auto 3rem auto;
    line-height: 1.75;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.buttons button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    height: 2.5rem;
    font-weight: 500;
    padding: 0 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.buttons .get-in-touch {
    background: #2563eb;
    color: white;
}

.buttons .get-in-touch:hover {
    background: #213e9c;
}

.buttons .view-resume {
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
}

.buttons .view-resume:hover {
    background: #d7d7d7;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contact {
        flex-direction: row;
    }

    .separator {
        width: 1px;
        height: 1rem;
        background: #d1d5db;
    }
}