.dream .form-row {
    display: flex;
    gap: 20px;
}

.dream .form-row .form-group {
    flex: 1;
}

.dream .results {
    background: #f8f9fa;
    padding: 30px;
    margin-top: 20px;
    border-radius: 10px;
    display: none;
}

.dream .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dream .result-label {
    font-weight: bold;
    color: #333;
}

.dream .result-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #667eea;
}

.dream .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dream .highlight .result-value {
    color: white;
}

.dream .savings-plan {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 5px solid #4facfe;
}

.dream .progress-bar {
    width: 100%;
    height: 20px;
    background: #e1e5e9;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.dream .progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

@media (max-width: 768px) {
    .dream .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .dream .header h1 {
        font-size: 2rem;
    }
    
    .dream .form-section {
        padding: 20px;
    }
}