    .floating-icons {
            position: fixed;
            bottom: 120px;
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .floating-icons a {
            border: dashed white;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #1cba9f;
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            font-size: 24px;
            position: relative;
        }

        .floating-icons a svg {
            opacity: 0;
            position: absolute;
        }

        .floating-icons a:nth-child(1)::before {
            content: "\f0e0";
            /* envelope */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

        .floating-icons a:nth-child(2)::before {
            content: "\f232";
            /* whatsapp */
            font-family: "Font Awesome 6 Brands";
            font-weight: 400;
        }

        .floating-icons a:nth-child(3)::before {
            content: "\f095";
            /* phone */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

        .floating-icons a:hover {
            background-color: #17a589;
        }

        .call-icon {
            background-color: blue !important;
        }

        .mail-icon {
            background-color: red !important;
        }

        .whatsapp-icon {
            background-color: green !important;
        }