.card-container-socio {
            position: relative;
            width: 280px;
            height: 350px;
            background-color: #0052cc;
            border-radius: 15px;
            padding: 20px 0px;
            color: white;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .card-container-socio:before {
            content: '';
            position: absolute;
            top: -32px;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 40px;
            background-color: #2a2a2a;
            border-radius: 5px;
        }

        .card-container-socio:after {
            content: '';
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 30px;
            background-color: #2a2a2a;
        }

        .company-logo {
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .company-logo img {
            vertical-align: middle;
            margin-right: 5px;
			height: 40px;
        }

        .profile-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            margin-bottom: 10px;
        }

        .employee-name {
            font-weight: bold;
            font-size: 20px;
        }

        .employee-role {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .info-section {
            background-color: #0065ff;
            padding: 10px;
            border-radius: 10px;
            margin-top: 10px;
            text-align: left;
            font-size: 14px;
        }

        .info-section p {
            margin: 0;
        }

        .info-section strong {
            font-weight: bold;
        }