/* Steps Section */
.steps-section {
    padding-bottom: 10rem;
    background: #050505;
    /* Matches form section end */
}

.steps-card {
    border: 1px solid #222;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 64px;
}

.steps-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222;
}

.steps-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-color);
    font-style: italic;
    opacity: 0.5;
}

.steps-list p {
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .steps-card {
        padding: 2rem;
    }

    .steps-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .step-number {
        font-size: 2rem;
    }
}