h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.subhead {
    text-align: center;
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 50px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}
.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.step-reverse {
    flex-direction: row-reverse;
}

.step-text {
    flex: 1;
}
.step-text h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.step-text h2 .step-num {
    color: #f97316;
    margin-right: 10px;
}
.step-text p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-top: 6px;
}

.step-image {
    flex: 1;
    background: #242424;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #2a2a2a;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-weight: 600;
    font-size: 1.1rem;
}
.step-image .icon-placeholder {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #f97316;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.back-link:hover {
    border-bottom-color: #f97316;
}

.cta-block {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}
.cta-block .btn {
    display: inline-block;
    background: #f97316;
    color: #0c0c0c;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.cta-block .btn:hover {
    background: #e85d0e;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 20px;
    }
    .step-reverse {
        flex-direction: column;
    }
    .step-image {
        width: 100%;
        min-height: 100px;
        padding: 30px 20px;
    }
    h1 {
        font-size: 2rem;
    }
    .container {
        padding: 30px 20px;
    }
}
