.app-store-logos {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.app-store-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.app-store-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-store-link:active {
    transform: translateY(1px);
}

.app-store-logo {
    max-height: 40px;
    width: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .app-store-logos {
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
    }
    
    .app-store-logo {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .app-store-logos {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .app-store-link {
        width: 80%;
        max-width: 200px;
        text-align: center;
    }
    
    .app-store-logo {
        max-height: 40px;
        width: auto;
    }
}