/* Progress container */
.cf7-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Step circles */
.step-indicator {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

/* Active / current step */
.step-indicator.active {
    background: #00a7d9;
    color: #fff;
}

/* Line between steps */
.progress-line {
    flex: 1;
    height: 2px;
    background: #ccc;
    margin: 0 12px;
}

/* Step hidden by default */
.cf7-step {
    margin-bottom: 25px;
}

/* Buttons styling */
.cf7-next,
.cf7-prev {
    background: #00a7d9;
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
}

.cf7-prev {
    background: transparent;
    color: #00a7d9;
}