/* Separate badge styling */
.separate-badges {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
}

.app-store-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.app-store-link:hover {
    transform: scale(1.05);
}

.app-store-badge,
.google-play-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-link:hover .app-store-badge {
    transform: scale(1.05);
}

/* Responsive badge sizing */
@media (max-width: 768px) {
    .separate-badges {
        gap: 15px;
    }
    
    .app-store-badge,
    .google-play-badge {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .separate-badges {
        gap: 8px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .app-store-badge,
    .google-play-badge {
        height: 40px;
    }
}