* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f4f4;
}

.business-card {
    background: white;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
}

.logo img {
    width: 100px;
    margin-bottom: 0;
}

.info h1 {
    font-size: 30px;
    color: black;
}

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

.info p {
    font-size: 16px;
    margin: 7px 0;
}

.social-icons {
    margin-top: 15px;
}

.share-btn {
    background: blue;
    color: white;
    border: black;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.share-btn:hover {
    background: #005bb5;
}
