/* style.css - Custom CSS */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?finance') no-repeat center/cover;
    height: 100vh;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content {
    padding-top: 20%;
    text-align: center;
}
.feature-card {
    transition: transform 0.3s;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.feature-card:hover {
    transform: scale(1.05);
}
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.table th {
    background-color: #007bff;
    color: white;
}