.step-indicator {
        position: relative;
        padding-left: 40px;
        transition: all 0.3s ease;
    }
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
        background-color: #B2872B;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    .step-indicator.active .step-number {
        background-color: #041E43;
    }
    .form-control::placeholder,
    .form-control::-webkit-input-placeholder,
    .form-select {
        color: rgba(255,255,255,0.7);
    }
    .form-control:focus,
    .form-select:focus {
        border-color: #B2872B;
        box-shadow: 0 0 0 0.25rem rgba(178,135,43,0.25);
    }
