.icon-bounce {
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* New animations for the location feature icon */
.location-feature .feature-icon {
    animation: fadeIn 1.5s ease-out forwards, moveAround 4s infinite ease-in-out 1.5s;
    font-size: 8rem; /* Make the icon much bigger */
    display: block;
    margin: 0 auto 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes moveAround {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) translateX(5px) rotate(5deg);
    }
    50% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) translateX(-5px) rotate(-5deg); /* Prevent downward movement */
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.location-feature {
    text-align: center;
    padding: 4.5rem 2rem; /* Add side padding */
}

.location-feature h3 {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-0-5);
}

.location-feature p {
    font-size: var(--normal-font-size);
    max-width: 600px;
    margin: 0 auto;
}
