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

.profile-card {
    background-color: #ecf0f1;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: scale(1.05);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #12365d;
}

.profile-name {
    font-size: 22px;
    font-weight: bold;
    color: #356ca2;
    margin: 10px 0;
}

.profile-role {
font-size: 16px;
color: #043260;
margin-bottom: 20px;
}    

.profile-role .role-title {
font-weight: bold;
color: #2c3e50;
}

.profile-role br {
margin-bottom: 5px;
}

.skills, .rates {
    margin: 20px 0;
}

.skills span, .rates span {
    display: inline-block;
    background-color: #a1b6cc;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.skills span:hover, .rates span:hover {
    background-color: #308eed;
}

.rates {
margin: 20px 0;
font-size: 16px;
text-align: center;
color: #34495e;
}

.rates strong {
font-size: 18px;
color: #124980;
}

.rate-value {
font-size: 20px;
font-weight: bold;
color: #6c524f;
transition: color 0.3s, transform 0.3s;
}

.rate-value:hover {
color: #6c524f;
transform: scale(1.1);
}

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

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-media a:hover {
    background-color: #34776a;
    transform: scale(1.1);
}

.description {
    margin-top: 20px;
    font-size: 14px;
    color: #34495e;
}