/* Separate App Store and Google Play Badges Styling */
.separate-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
}

.badge-link:hover {
    transform: translateY(-3px);
}

.app-store-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.google-play-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.coming-soon-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .separate-badges {
        gap: 15px;
    }
    
    .app-store-img, .google-play-img {
        height: 44px;
    }
    
    .coming-soon-text {
        font-size: 12px;
    }
}
