* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.card {
    border-radius: 0.75rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.08);
}

.card-body {
    padding: 1.5rem;
}

.card-title a {
    text-decoration: none;
}
  
.card-title a:hover {
    text-decoration: underline;
}

#contact a {
    color: inherit;
}
  
#contact a:hover {
    color: #0d6efd; /* Bootstrap primary */
}
    

