body {
    background-color: rosybrown; 
    font-family: Arial, sans-serif; 
    display: flex; 
    justify-content: center;
}


.business-card {
    width: 300px;
    background-color: #fdfdfd; 
    padding: 20px; 
    
 
    margin-top: 100px; 
    margin-left: auto;
    margin-right: auto;
    
    text-align: center; 
    font-size: 16px; 
    
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    border-radius: 15px;
    border: 1px solid #ddd;
}

.profile-image {
    max-width: 100%; 
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%; 
    border: 4px solid rosybrown;
    margin-bottom: 10px;
}

p {
    margin-top: 5px; 
    margin-bottom: 5px; 
    color: #333;
}

.full-name {
    font-weight: bold;
    font-size: 1.2em;
    color: #2c3e50;
}

.designation {
    font-style: italic;
    color: #7f8c8d;
}

a {
    text-decoration: none; 
    color: #d35d6e; 
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #a0404e;
}

.social-media a {
    margin: 0 8px; 
    font-size: 0.9em;
}

h2 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #444;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: 15px 0;
}