/* Custom Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bg-gradient-primary {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
}

.intent-score-high {
    color: #198754;
    font-weight: bold;
}

.intent-score-medium {
    color: #ffc107;
    font-weight: bold;
}

.intent-score-low {
    color: #dc3545;
    font-weight: bold;
}

.valuation-result {
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid #0d6efd;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}
