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

.profile-card {
    background: #ffffff;
    width: 350px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.profile-card img.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-card h2 {
    margin-top: 80px;
    font-size: 22px;
}

.profile-card p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

.button-group {
    margin-top: 20px;
}

.button-group button {
    background: #6e4a00;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.button-group button:hover {
    background: #8a5b00;
}

.contact-info {
    margin-top: 30px;
    text-align: left;
}

.contact-info div {
    background: #f9f9f9;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
}

.contact-info div:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
}

.contact-info div i {
    font-size: 20px;
    margin-right: 15px;
    color: #007bff;
}
