css

/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #f5f7fa;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 3rem;
}

.hero-image {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Feature Icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
}

/* Service Icons */
.service-icon {
    color: var(--primary-color);
}

/* Cards */
.card {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
}

.social-icons a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Dashboard */
.account-card {
    transition: transform 0.3s ease;
}

.account-card:hover {
    transform: translateY(-5px);
}

/* Transactions */
.transaction-item {
    transition: background-color 0.2s ease;
}

.transaction-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 2rem;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }
}