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

html {
    overscroll-behavior-y: none;
}

body {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    background-color: #F5F1E8;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.hero-image {
    width: 100%;
    margin: 0 0 80px 0;
    display: block;
    overflow: hidden;
}

.hero-image picture {
    display: block;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

h2 {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.instructions {
    margin-bottom: 64px;
}

.step {
    margin-bottom: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #8B7355;
    min-width: 24px;
    padding-top: 2px;
}

.step-text,
.info-section p,
.info-section ul {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
}

.info-section {
    margin-bottom: 48px;
}

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

.info-section li::before {
    content: "•";
    font-size: 0.6em;
    vertical-align: middle;
    margin-right: 8px;
}

.info-section a {
    color: #8B7355;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

.info-section a:focus {
    outline: 2px solid #8B7355;
    outline-offset: 2px;
    border-radius: 2px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px 60px;
    }

    .hero-image {
        margin-bottom: 64px;
    }

    h2 {
        font-size: 13px;
    }

    .step {
        margin-bottom: 28px;
        gap: 16px;
    }

    .step-text {
        font-size: 16px;
    }
}
