.penzo-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.penzo-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #A0CE4E, #F76B15);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 10px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #A0CE4E;
    color: #fff;
}

.step.completed .step-number {
    background: #F76B15;
    color: #fff;
}

.step-title {
    display: block;
    font-size: 14px;
    color: #666;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A0CE4E;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.price-notice {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-input-wrapper {
    display: flex;
    align-items: center;
    max-width: 200px;
    margin: 15px 0;
}

.currency {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    color: #A0CE4E;
}

.price-info {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: #A0CE4E;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: auto;
}

.radio-label input[type="radio"]:checked + span {
    color: #A0CE4E;
    font-weight: 600;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-label a {
    color: #F76B15;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: #e0e0e0;
    color: #666;
}

.btn-prev:hover {
    background: #d0d0d0;
}

.btn-next {
    background: #A0CE4E;
    color: #fff;
    margin-left: auto;
}

.btn-next:hover {
    background: #8eb63e;
}

.btn-submit {
    background: #F76B15;
    color: #fff;
    margin-left: auto;
}

.btn-submit:hover {
    background: #e65a04;
}

.order-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-summary h3 {
    color: #333;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.order-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.order-summary .summary-item:last-child {
    border-bottom: none;
}

.order-summary .summary-label {
    font-weight: 600;
    color: #666;
}

.order-summary .summary-value {
    color: #333;
}

.total-price {
    background: linear-gradient(90deg, #A0CE4E, #F76B15);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.total-price h3 {
    margin: 0;
    font-size: 24px;
}

.form-loading {
    text-align: center;
    padding: 50px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #A0CE4E;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .progress-steps {
        font-size: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}