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

body {
    font-family: Arial, sans-serif;
    background-color: #d6e2f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

p {
    margin: 5px;
}

a {
    text-decoration: none;
}

hr {
    border: none;
    border-top: 1px solid gray;
    margin: 10px 0;
}

.business-card {
    width: 400px;
    padding: 20px;
    margin: 0 auto;
    border-radius: 20px;
    font-size: 16px;
    background-color: white;
    text-align: center;
    border: 2px solid black;
    transition: 0.3s;
}

.profile-image {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
}

.full-name {
    color: #0073e6;
    font-size: 24px;
    font-weight: bold;
}

.job-title {
    font-size: 18px;
    color: #0073e6;
}

.business-card a {
    color: #0073e6;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.actions a {
    display: block;
    background-color: #d6e2f0;
    padding: 10px 20px;
    border-radius: 10px;
    color: #0073e6;
    font-weight: bold;
    transition: 0.3s;
}

.actions a:hover {
    background-color: #c0d4e8;
}

.social-media .links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media .links a {
    font-size: 22px;
    color: #0073e6;
    background-color: #d6e2f0;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.social-media .links a:hover {
    background-color: #c0d4e8;
}

.social-media h2 {
    color: #0073e6;
    font-size: 22px;
    margin-bottom: 10px;
}