/* Improved typography and color scheme */
body {
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark grey text for better readability */
}
.card {
    border: none;
    background-color: #f9f9f9; /* Light grey background for cards */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    border-radius: 10px; /* Rounded corners for modern look */
    margin-bottom: 20px; /* Space between cards */
}
.list-group-item {
    font-size: 1.2rem; /* Appropriate text size */
    color: #b37400; /* Theme color for links */
    display: block;
    padding: 15px;
    border-radius: 10px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}
.list-group-item:hover {
    background-color: #e8f0fe; /* Light blue background on hover */
    text-decoration: none; /* No underline */
}
.fa {
    margin-right: 10px; /* Space between icon and text */
}