/* Custom styles for Bootstrap 5 */
body {
    background: #f8f9fa;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card {
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.bank-card {
    border-left: 4px solid #0d6efd;
}

.source-card {
    transition: all 0.3s;
    border: 1px solid #dee2e6;
}

.source-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #198754;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.table-actions form {
    display: inline-block;
    margin: 0 2px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
