.adopt-steps {
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.adopt-step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.adopt-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-500);
    color: #ffffff;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    border-radius: var(--radius-full);
}

.adopt-step h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-xs);
}

.adopt-step p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.adopt-step a {
    color: var(--color-primary-500);
    font-weight: var(--font-weight-medium);
}

.adopt-info {
    background: var(--color-primary-50);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.adopt-info h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-base);
}

.included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    list-style: none;
}

.included-list li {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    padding: var(--space-xs) 0;
}

.included-list li::before {
    content: "\2713  ";
    color: var(--color-success);
    font-weight: bold;
}

.adopt-faq {
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.adopt-faq h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-xl);
}

.faq-item {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.faq-item h3 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
}

.faq-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

@media (max-width: 480px) {
    .adopt-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-base);
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
    }

    .adopt-info {
        padding: var(--space-lg);
    }

    .adopt-faq h2 {
        font-size: var(--font-size-xl);
    }
}
