.steps-section {
    background-color: #121212;
    color: #FFFFFF;
    padding: 50px 0;
    font-family: 'SF Pro', sans-serif;
}

.headline {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.step-bubble {
    background-color: #1C1C1E;
    border: 2px solid #ffb703; /* Changed to red */
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    flex-basis: calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.step-subheadline {
    color: #ffb703; /* Changed to red */
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-bubble h3 {
    font-size: 3rem;
    color: #ffb703; /* Changed to red */
    margin-bottom: 1rem;
    font-weight: bold;
}

.step-bubble p {
    color: #ebebeb;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-bubble {
        flex-basis: 80%;
        max-width: 93%;
    }
}
