    body {
        font-family: 'Montserrat', sans-serif;
    }

    /* Custom styles for hero section fade transition */
    .hero-bg-image {
        transition: opacity 1.5s ease-in-out;
    }

    /* Logo adjustments */
    .header-logo {
        height: 64px;
        width: auto;
        object-fit: contain;
    }

    .footer-logo {
        height: 110px;
        width: auto;
        object-fit: contain;
    }

    /* Team member hover effect (CSS) */
    .team-member-card .overlay {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .team-member-card:hover .overlay {
        opacity: 1;
    }

    /* --- Styles for Floating Buttons --- */
    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .floating-widget {
        position: fixed;
        bottom: 20px;
        z-index: 40;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .floating-widget.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* WhatsApp Button Styles - Increased Size */
    #whatsapp-widget {
        right: 20px;
    }

    #whatsapp-button {
        width: 64px;
        height: 64px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        animation: bounce 2s infinite ease-in-out;
        font-size: 2rem;
        /* Increased icon size */
    }

    #whatsapp-tooltip {
        position: absolute;
        bottom: 12px;
        right: 80px;
        background-color: #140c3c;
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        white-space: nowrap;
        font-size: 0.9rem;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.3s, transform 0.3s;
        pointer-events: none;
    }

    #whatsapp-widget:hover #whatsapp-tooltip {
        opacity: 1;
        transform: translateX(0);
    }

    #whatsapp-popup {
        position: absolute;
        bottom: 85px;
        right: 0;
        width: 280px;
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s, transform 0.3s;
        pointer-events: none;
    }

    #whatsapp-widget.active #whatsapp-popup {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Scroll to Top Button Styles - Increased Size */
    #scroll-to-top-button {
        left: 20px;
        width: 56px;
        height: 56px;
        background-color: #f4d434;
        color: #140c3c;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        font-size: 1.5rem;
        /* Increased icon size */
    }

    .testimonial-card-container {
        position: relative;
        padding-top: 4rem;
    }

    .testimonial-icon-static {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }