/* Questions Section */
.questions-section {
    background: white;
    padding: 120px 0;
}

.questions-section h2 {
    font-size: 42px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.questions-section h3 {
    font-size: 38px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.questions-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 80%;
}

.questions-image-wrapper {
    position: relative;
    /* Anchor for widgets */
    display: inline-block;
    /* Wrap tight around image */
}

.questions-image-wrapper img.img-fluid.position-relative.z-1 {
    max-width: 100%;
    height: auto;
}

/* Widgets */
/* Widgets */
.support-widget {
    background: linear-gradient(135deg, #F05A28 0%, #D14F1A 100%);
    /* Orange gradient */
    color: white;
    min-width: 260px;
    /* Animation base */
    animation: floatWidget 4s ease-in-out infinite;
}

.icon-box {
    flex-shrink: 0;
}

.widget-label {
    opacity: 0.9;
    font-size: 13px;
    line-height: 1.2;
}

/* Specific Positioning to match screenshot */
.call-widget {
    top: 35%;
    right: -25px;
    /* Overlapping right edge */
    animation-delay: 0s;
}

.email-widget {
    bottom: 5%;
    /* Close to bottom */
    left: -40px;
    /* Sticking out to left significantly */
    z-index: 3;
    animation-delay: 2s;
    /* Offset animation */
}

@keyframes floatWidget {
    0% {
        transform: translateY(0px);
    }

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

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

@media (max-width: 991px) {
    .questions-section {
        padding: 80px 0;
        text-align: center;
    }

    .questions-section p {
        margin: 0 auto 30px;
    }

    .questions-image-wrapper {
        text-align: center;
        margin-top: 60px;
        display: block;
    }

    .support-widget {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 15px auto;
        display: block;
        /* Stack them */
        width: fit-content;
        max-width: 300px;
        animation: none;
        /* Disable float on mobile */
    }

    .call-widget,
    .email-widget {
        transform: none;
    }
}