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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.business-card {
    background-color: #D4B996FF; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 400px; 
    width: 100%;
}

.profile-picture {
    width: 150px; 
    height: 150px; 
    border-radius: 50%;
    margin-bottom: 10px;
}

.name {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 10px;
}

.profession {
    font-size: 18px;
    margin-bottom: 10px;
}

.company {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icons a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
}

.contact-icons i {
    font-size: 24px;
}

.services {
    margin-top: 20px;
}

.services img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
}