.cv-builder-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cv-progress-bar {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.cv-progress-fill {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.cv-step {
    display: none;
}

.cv-step.active {
    display: block;
}

.form-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
}

.form-section h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input,
.checkbox-group input {
    margin-right: 8px;
}

.file-upload {
    margin-bottom: 15px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: block;
    padding: 40px 20px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload-label:hover {
    border-color: #4CAF50;
}

.file-upload-label span {
    color: #666;
    font-size: 16px;
}

.btn-add {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-add:hover {
    background: #1976D2;
}

.btn-remove {
    background: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-back {
    background: #9E9E9E;
    color: white;
}

.btn-back:hover {
    background: #757575;
}

.btn-next,
.btn-submit {
    background: #4CAF50;
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #45a049;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.payment-section {
    margin-top: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.btn-pay {
    background: #FF9800;
    color: white;
}

.btn-pay:hover {
    background: #F57C00;
}

.privacy-notice,
.note,
.secure-notice {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

#form-messages {
    margin-top: 20px;
}

.message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.message.success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.work-experience-item,
.certificate-item {
    padding: 15px;
    background: white;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.additional-language,
.additional-skill {
    display: flex;
    align-items: center;
}

.additional-language input,
.additional-skill input {
    flex: 1;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .cv-builder-wrapper {
        padding: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .payment-option {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-navigation button {
        width: 100%;
    }
}