.ibw-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Raleway', Arial, sans-serif;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.ibw-header {
    text-align: center;
    margin-bottom: 30px;
}

.ibw-header h2 {
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.ibw-header p {
    color: #666;
    font-size: 16px;
}

.ibw-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.ibw-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #40E0D0, #00CED1);
    width: 9%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.ibw-step {
    display: none;
    animation: fadeIn 0.3s ease;
    min-height: 400px;
}

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

.ibw-step h3 {
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.ibw-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.ibw-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    min-height: 120px;
    justify-content: center;
}

.ibw-option:hover {
    border-color: #40E0D0;
    background: #f0fffe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 224, 208, 0.2);
}

.ibw-option.selected {
    border-color: #40E0D0;
    background: #40E0D0;
    color: #fff;
}

.ibw-option img {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.ibw-option span {
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

.ibw-input-field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ibw-input-field img {
    max-width: 50px;
    max-height: 50px;
}

.ibw-input-field input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    min-width: 200px;
    text-align: center;
}

.ibw-input-field input:focus {
    outline: none;
    border-color: #40E0D0;
}

.ibw-input-field span {
    font-weight: 500;
    color: #666;
}

.ibw-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-row.checkbox-row {
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.form-row input,
.form-row textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #40E0D0;
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-row input[type="checkbox"] {
    margin: 0;
    width: auto;
    padding: 0;
}

.checkbox-row a {
    color: #40E0D0;
    text-decoration: none;
}

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

.ibw-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.ibw-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.ibw-btn-primary {
    background: #40E0D0;
    color: #fff;
}

.ibw-btn-primary:hover {
    background: #00CED1;
    transform: translateY(-1px);
}

.ibw-btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
}

.ibw-btn-secondary:hover {
    background: #e0e0e0;
}

.ibw-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ibw-thank-you {
    text-align: center;
    padding: 40px 20px;
}

.ibw-thank-you h3 {
    color: #40E0D0;
    font-size: 28px;
    margin-bottom: 20px;
}

.ibw-thank-you p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.ibw-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #40E0D0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.ibw-summary h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.ibw-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ibw-summary li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ibw-summary li:last-child {
    border-bottom: none;
}

.ibw-summary strong {
    color: #333;
}

/* Loading states */
.ibw-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Error states */
.form-row input.error,
.form-row textarea.error {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .ibw-container {
        padding: 15px;
        margin: 10px;
    }
    
    .ibw-header h2 {
        font-size: 24px;
    }
    
    .ibw-step h3 {
        font-size: 20px;
    }
    
    .ibw-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ibw-option {
        min-height: 80px;
        padding: 15px;
    }
    
    .ibw-option img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ibw-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .ibw-btn {
        width: 100%;
        min-width: auto;
    }
    
    .ibw-input-field {
        flex-direction: column;
        gap: 10px;
    }
    
    .ibw-input-field input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ibw-header h2 {
        font-size: 22px;
    }
    
    .ibw-step h3 {
        font-size: 18px;
    }
    
    .ibw-option span {
        font-size: 12px;
    }
    
    .ibw-summary {
        padding: 15px;
    }
}