
body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f0f2f5;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 20px;
        }
        
        .card-client {
            background: #2cb5a0;
            width: 18rem;
            padding: 25px 20px;
            border: 4px solid #7cdacc;
            box-shadow: 0 6px 10px rgba(207, 212, 222, 1);
            border-radius: 10px;
            text-align: center;
            color: #fff;
            transition: all 0.3s ease;
            position: relative;
        }

        .card-client:hover {
            transform: translateY(-10px);
        }

        .user-picture {
            overflow: hidden;
            object-fit: cover;
            width: 5rem;
            height: 5rem;
            border: 4px solid #7cdacc;
            border-radius: 999px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .user-picture img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .name-client {
            margin: 0;
            margin-top: 20px;
            font-weight: 600;
            font-size: 18px;
        }

        .name-client span {
            display: block;
            font-weight: 200;
            font-size: 16px;
            margin-top: 5px;
        }

        .divider {
            width: 100%;
            height: 2px;
            background: #7cdacc;
            margin: 20px 0;
        }

        .contact-media {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            width: 100%;
        }

        .contact-media a {
            position: relative;
            text-decoration: none;
            color: inherit;
            display: inline-block;
            flex: 1;
            text-align: center;
            padding: 0 5px;
        }

        .contact-icon {
            font-size: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .contact-media a:hover .contact-icon {
            transform: scale(1.2);
        }

        .tooltip-contact {
            background: #262626;
            display: block;
            position: absolute;
            bottom: 0;
            left: 50%;
            padding: 0.5rem 0.4rem;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
            opacity: 0;
            pointer-events: none;
            transform: translate(-50%, -90%);
            transition: all 0.2s ease;
            z-index: 1;
            white-space: nowrap;
        }
        .tooltip-contact:after {
            content: " ";
            position: absolute;
            bottom: 1px;
            left: 50%;
            border: solid;
            border-width: 10px 10px 0 10px;
            border-color: transparent;
            transform: translate(-50%, 100%);
        }
        .contact-media a .tooltip-contact:after {
            border-top-color: #262626;
        }

        .contact-media a:hover .tooltip-contact {
            opacity: 1;
            transform: translate(-50%, -130%);
        }
        
        .personal-info {
            display: flex;
            justify-content: space-around;
            margin: 15px 0;
            font-size: 14px;
        }
        
        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .info-label {
            font-weight: 300;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-weight: 500;
        }
        .additional-image {
            width: 100%;
            margin-top: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #7cdacc;
        }
        
        .additional-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .floating-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #2cb5a0;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            background-color: #7cdacc;
        }