body {
    background-color: #f0f8ff;
}

.person-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.person-card:hover {
    transform: translateY(-5px);
}

.person-card .card-title {
    color: #333;
    font-weight: bold;
}

.person-card .card-text {
    color: #555;
}

.social-icons a {
    color: #3498db;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #207bbd;
}