/* Main form container */
.soehpon-form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form steps */
.soehpon-step {
    display: none;
    animation: fadeIn 0.3s ease;
}
.soehpon-step.active {
    display: block;
}

/* Input styles */
.soehpon-form input[type="text"],
.soehpon-form input[type="email"],
.soehpon-form textarea,
.soehpon-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Buttons */
.soehpon-btn {
    padding: 12px 24px;
    background: #21759b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.soehpon-btn:hover {
    background: #1a6485;
}

/* Results display */
.soehpon-results {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 2rem;
}
.soehpon-review-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}