.nav__logo-link {
    text-decoration: none;
    display: inline-block;
}

.nav__logo-link h1 {
    margin: 0;
}

.instruction__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero--instructions {
    min-height: auto;
    padding: 140px 0 80px;
}

.instruction-section,
.instruction-cta {
    padding: 80px 0;
}

.instruction-section--gray {
    background: #f8f9fa;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-card__text h3 {
    color: #333;
    margin-bottom: 1rem;
}

.step-card__text p {
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.step-card__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB6C1 0%, #ff8a65 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-card__image img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: #f3f3f3;
}

.faq {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq__item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq__item h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.faq__item p {
    margin: 0;
    color: #666;
}

.instruction-cta__box {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.instruction-cta__box h2 {
    margin-bottom: 1rem;
}

.instruction-cta__box p {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-card__text p {
        margin-left: auto;
        margin-right: auto;
    }

    .step-card__number {
        margin-left: auto;
        margin-right: auto;
    }

    .hero--instructions .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero--instructions .hero__actions {
        justify-content: center;
    }

    .step-card__image img {
        max-width: 260px;
    }
}