body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.business-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    padding: 20px;
}

.profile-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #007BFF;
}

.info h1 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.info h2 {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.info p {
    font-size: 14px;
    color: #777;
}