html,body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto", sans-serif}
body {
    background: radial-gradient(1200px 800px at 10% 10%, #e6f7f7 0%, #f5fbfb 35%, #f7fafb 100%);
    color: #2b2b2b;
}
.profile-card, .section-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.profile-card:hover, .section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}
.avatar {
    width: 100%;
    display: block;
}
.name {
    margin: 16px 0 4px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}
.role, .location, .contact {
    display: flex;
    align-items: center;
    gap: 8px;
}
.chip-list {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip-list li {
    background: #e6fffb;
    color: #0f766e;
    border: 1px solid #99f6e4;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
}
.list-clean {
    margin: 6px 0 0 0;
}
.list-clean li {
    margin: 6px 0;
}
.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #0f766e;
    background: #ecfeff;
    border: 1px solid #99f6e4;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.link-btn:hover {
    background: #cffafe;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15,118,110,0.15);
}
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 18px 0 8px 0;
    color: #334155;
}
.muted {
    color: #64748b;
}
footer.w3-teal {
    background: linear-gradient(90deg, #0f766e, #0ea5a4);
}
footer p {
    cursor: pointer;
    padding: 1px 0;
}

