
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.step-progress .step-item {
    flex: 1;
    text-align: center;
    position: relative;
}
.step-progress .step-item span {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
}
.step-progress .step-item.active span {
    background: #7b68ee;
    color: white;
}
.step-progress .step-item p {
    margin-top: 8px;
}
.pricing-card {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pricing-card:hover, .pricing-card.selected {
    border-color: #7b68ee;
    background: #f3f0ff;
}
.theme-btn {
    background-color: #46c6ce;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.theme-btn:hover,
.theme-btn:focus {
    background-color: #5f50c9;
    color: #fff;
}

.theme-btn:disabled {
    background-color: #ccc;
    color: #999;
}

.step-1 .next-btn {
    width: auto;
    display: inline-block;
    margin-top: 10px;
}

.prev-btn,
.next-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #6c757d;
    color: white;
}
