body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #4a5568;
    text-decoration: none;
}

nav a:hover {
    color: #2d3748;
}

h1, h2, h3 {
    color: #1a202c;
}

.bg-custom {
    background-color: #4c51bf; /* Custom color for buttons */
}

.text-custom {
    color: #4c51bf; /* Custom color for icons and text */
}

button {
    border-radius: 0.375rem; /* Small border radius */
}

button:hover {
    opacity: 0.9; /* Slightly reduce opacity on hover */
}

.card {
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

footer a {
    color: #a0aec0;
}

footer a:hover {
    color: #718096;
}

.category-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}