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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #edf6f9;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
}

.profile-card {
    background: #FFF;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(29, 53, 87, 0.08);
    border: 1px solid rgba(168, 218, 220, 0.4);
}

.profile-image {
    margin-bottom: 20px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #a8dadc;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-info {
    margin-bottom: 30px;
}

.name {
    font-size: 28px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 5px;
}

.profession {
    font-size: 18px;
    font-weight: 500;
    color: #457b9d;
    margin-bottom: 8px;
}

.specialization {
    font-size: 14px;
    color: #457b9d;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #1d3557;
    background: rgba(168, 218, 220, 0.2);
    padding: 8px 12px;
    border-radius: 10px;
    border-left: 3px solid #457b9d;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(168, 218, 220, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(69, 123, 157, 0.15);
    color: #1d3557;
}

.contact-item:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(69, 123, 157, 0.15);
}

.contact-item i {
    color: #457b9d;
    width: 16px;
    text-align: center;
}

.contact-item span {
    font-weight: 500;
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.2s ease;
    position: relative;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.phone {
    background: #ee6c4d;
    color: white;
    border: 2px solid transparent;
}

.cta-button.whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid transparent;
}

.cta-button.maps {
    background: #2ec4b6;
    color: #FFF;
    border: 2px solid transparent;
}

.cta-button.email {
    background: #1d3557;
    color: #FFF;
    border: 2px solid transparent;
}

.cta-button.vcard {
    background: #1d3557;
    color: white;
    border: 2px solid transparent;
}

/* Responsive Design */
@media (max-width: 480px) {
    .contact-actions {
        margin: 0 auto 30px auto;
    }

    .cta-button {
        width: 55px;
        height: 55px;
    }

    .profile-card {
        padding: 20px 20px 15px;
    }

    .profile-image {
        margin-bottom: 15px;
    }

    .name {
        font-size: 24px;
    }

    .profession {
        font-size: 16px;
    }

    .specialization {
        font-size: 13px;
    }

    .contact-item {
        font-size: 13px;
        padding: 6px 10px;
    }

    .contact-item span {
        font-size: 12px;
    }

    .logo {
        height: 35px;
        width: 35px;
    }

    .cta-button {
        font-size: 15px;
        padding: 12px 18px;
    }
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.6s ease-out;
}

.profile-image img {
    animation: fadeInUp 0.8s ease-out;
}

.profile-info {
    animation: fadeInUp 1s ease-out;
}

.contact-actions {
    animation: fadeInUp 1.2s ease-out;
}

/* Sezione Loghi */
.logos-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(168, 218, 220, 0.2);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.logo-link:is(a):hover {
    opacity: 0.9;
}

.logo {
    height: 40px;
    width: auto;
}

.language-section {
    margin-top: 20px;
    color: #666;
    font-size: 12px;
}

.language-section i {
    font-size: 14px;
    margin-right: 5px;
}